forked from heyman/mms-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql_dump
43 lines (37 loc) · 1022 Bytes
/
mysql_dump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# phpMyAdmin SQL Dump
# version 2.5.6
# http://www.phpmyadmin.net
#
# Host: localhost
# Created: 03 augusti 2004 kl 12:59
# Serverversion: 4.0.20
# PHP-version: 4.2.3
#
# Database : `mms`
#
CREATE DATABASE `mms`;
USE mms;
# --------------------------------------------------------
#
# Struture for table `mms`
#
CREATE TABLE `mms` (
`id` int(10) NOT NULL auto_increment,
`from` char(255) NOT NULL default '',
`to` char(255) NOT NULL default '',
`subject` char(255) NOT NULL default '',
`content_type` char(255) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=28 ;
# --------------------------------------------------------
#
# Structure for table `parts`
#
CREATE TABLE `parts` (
`id` int(10) NOT NULL auto_increment,
`mmsid` int(10) NOT NULL default '0',
`datalen` int(12) NOT NULL default '0',
`content_type` varchar(255) NOT NULL default '',
`data` mediumblob NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=33 ;