X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2Fsqlite.sql;h=b364cb46b29fb53cd1217d5fe713e7d4227efe98;hb=6ffb5be522e752ea1ad2a99d36648535fe30a43b;hp=412201509b2995102349eee0dba6bba12191f71e;hpb=d563309646cd5a6d156ffb3d601f9d914926831b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/sqlite.sql b/t/lib/sqlite.sql index 4122015..b364cb4 100644 --- a/t/lib/sqlite.sql +++ b/t/lib/sqlite.sql @@ -1,6 +1,6 @@ -- -- Created by SQL::Translator::Producer::SQLite --- Created on Sun Nov 23 13:27:13 2008 +-- Created on Sat Jan 24 19:42:15 2009 -- BEGIN TRANSACTION; @@ -50,6 +50,17 @@ CREATE INDEX artwork_to_artist_idx_artist_id_artwork_to_arti ON artwork_to_artis CREATE INDEX artwork_to_artist_idx_artwork_cd_id_artwork_to_ ON artwork_to_artist (artwork_cd_id); -- +-- Table: bindtype_test +-- +CREATE TABLE bindtype_test ( + id INTEGER PRIMARY KEY NOT NULL, + bytea blob, + blob blob, + clob clob +); + + +-- -- Table: bookmark -- CREATE TABLE bookmark ( @@ -412,5 +423,12 @@ CREATE TABLE typed_object ( value varchar(100) NOT NULL ); +-- +-- Table: encoded +-- +CREATE TABLE encoded ( + id INTEGER PRIMARY KEY NOT NULL, + encoded varchar(100) NOT NULL +); COMMIT;