Got rid of "our."
[dbsrgits/SQL-Translator.git] / t / data / mysql / sqlfxml-producer-basic.sql
1 -- 
2 -- Created by SQL::Translator::Producer::MySQL
3 -- Created on Thu Aug  7 16:28:01 2003
4 -- 
5 -- SET foreign_key_checks=0;
6
7 --
8 -- Table: Basic
9 --
10 CREATE TABLE Basic (
11     id integer(10) NOT NULL auto_increment
12    ,title varchar(100) NOT NULL DEFAULT 'hello'
13    ,description text DEFAULT ''
14    ,email varchar(255)
15    ,INDEX  titleindex (title)
16    ,PRIMARY KEY (id)
17    ,UNIQUE (email)
18 );
19