Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class.git] / t / lib / test_deploy / DBICTest-Schema-1.x-SQLite.sql
1 --
2 -- This table line should not be skipped
3 --
4 CREATE TABLE artist (
5   artistid INTEGER PRIMARY KEY NOT NULL,
6   name varchar(100),
7   rank integer NOT NULL DEFAULT 13,
8   charfield char(10)
9 );
10
11 CREATE INDEX artist_name_hookidx ON artist (name); -- This line should error if artist was not parsed correctly