Revision 2, 0.5 kB
(checked in by falcon, 17 years ago)
|
added plugins
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | -- MySQL dump 9.11 |
---|
2 | -- |
---|
3 | -- Host: localhost Database: file_column_test |
---|
4 | -- ------------------------------------------------------ |
---|
5 | -- Server version 4.0.24 |
---|
6 | |
---|
7 | -- |
---|
8 | -- Table structure for table `entries` |
---|
9 | -- |
---|
10 | |
---|
11 | DROP TABLE IF EXISTS entries; |
---|
12 | CREATE TABLE entries ( |
---|
13 | id int(11) NOT NULL auto_increment, |
---|
14 | image varchar(200) default NULL, |
---|
15 | file varchar(200) NOT NULL, |
---|
16 | PRIMARY KEY (id) |
---|
17 | ) TYPE=MyISAM; |
---|
18 | |
---|
19 | DROP TABLE IF EXISTS movies; |
---|
20 | CREATE TABLE movies ( |
---|
21 | id int(11) NOT NULL auto_increment, |
---|
22 | movie varchar(200) default NULL, |
---|
23 | PRIMARY KEY (id) |
---|
24 | ) TYPE=MyISAM; |
---|
25 | |
---|