root/vendor/file-column-0.3.1/test/fixtures/mysql.sql @ 6

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
11DROP TABLE IF EXISTS entries;
12CREATE 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
19DROP TABLE IF EXISTS movies;
20CREATE TABLE movies (
21  id int(11) NOT NULL auto_increment,
22  movie varchar(200) default NULL,
23  PRIMARY KEY  (id)
24) TYPE=MyISAM;
25
Note: See TracBrowser for help on using the browser.