Fix false-positives in the no-external-evals assert ( ddcc02d14 )
[dbsrgits/DBIx-Class.git] / t / lib / test_deploy / DBICTest-Schema-1.x-SQLite.sql
CommitLineData
91d0c99f 1--
2-- This table line should not be skipped
3--
4CREATE 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
11CREATE INDEX artist_name_hookidx ON artist (name); -- This line should error if artist was not parsed correctly