3 -- Host: localhost Database: file_column_test
4 -- ------------------------------------------------------
5 -- Server version 4.0.24
8 -- Table structure for table `entries`
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,
19 DROP TABLE IF EXISTS movies;
21 id int(11) NOT NULL auto_increment,
22 movie varchar(200) default NULL,