X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2Fsqlite.sql;h=a004090e7bdd7754ebdda475daa7286871840b8a;hb=26283ee38f220f6c6bae720ea5a189c9c0f47f6f;hp=8de5cb5bf96c92cf233306b473ff084ba6810a24;hpb=a97fe7e08bd7b821caec5f0093f52f4fbfdfcad6;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/sqlite.sql b/t/lib/sqlite.sql index 8de5cb5..a004090 100644 --- a/t/lib/sqlite.sql +++ b/t/lib/sqlite.sql @@ -1,80 +1,33 @@ -- -- Created by SQL::Translator::Producer::SQLite --- Created on Fri Oct 24 21:02:41 2008 +-- Created on Mon Sep 21 00:11:34 2009 -- -BEGIN TRANSACTION; +BEGIN TRANSACTION; + -- -- Table: artist -- CREATE TABLE artist ( artistid INTEGER PRIMARY KEY NOT NULL, name varchar(100), - rank integer NOT NULL DEFAULT '13' -); - - --- --- Table: artist_undirected_map --- -CREATE TABLE artist_undirected_map ( - id1 integer NOT NULL, - id2 integer NOT NULL, - PRIMARY KEY (id1, id2) -); - -CREATE INDEX artist_undirected_map_idx_id1_ ON artist_undirected_map (id1); -CREATE INDEX artist_undirected_map_idx_id2_ ON artist_undirected_map (id2); - --- --- Table: bookmark --- -CREATE TABLE bookmark ( - id INTEGER PRIMARY KEY NOT NULL, - link integer NOT NULL + rank integer NOT NULL DEFAULT '13', + charfield char(10) ); -CREATE INDEX bookmark_idx_link_bookmark ON bookmark (link); +CREATE INDEX artist_name_hookidx ON artist (name); -- --- Table: books +-- Table: bindtype_test -- -CREATE TABLE books ( +CREATE TABLE bindtype_test ( id INTEGER PRIMARY KEY NOT NULL, - source varchar(100) NOT NULL, - owner integer NOT NULL, - title varchar(100) NOT NULL -); - - --- --- Table: cd --- -CREATE TABLE cd ( - cdid INTEGER PRIMARY KEY NOT NULL, - artist integer NOT NULL, - title varchar(100) NOT NULL, - year varchar(100) NOT NULL, - genreid integer -); - -CREATE INDEX cd_idx_artist_cd ON cd (artist); -CREATE INDEX cd_idx_genreid_cd ON cd (genreid); -CREATE UNIQUE INDEX cd_artist_title_cd ON cd (artist, title); - --- --- Table: cd_to_producer --- -CREATE TABLE cd_to_producer ( - cd integer NOT NULL, - producer integer NOT NULL, - PRIMARY KEY (cd, producer) + bytea blob, + blob blob, + clob clob ); -CREATE INDEX cd_to_producer_idx_cd_cd_to_pr ON cd_to_producer (cd); -CREATE INDEX cd_to_producer_idx_producer_cd ON cd_to_producer (producer); - -- -- Table: collection -- @@ -83,19 +36,6 @@ CREATE TABLE collection ( name varchar(100) NOT NULL ); - --- --- Table: collection_object --- -CREATE TABLE collection_object ( - collection integer NOT NULL, - object integer NOT NULL, - PRIMARY KEY (collection, object) -); - -CREATE INDEX collection_object_idx_collection_collection_obj ON collection_object (collection); -CREATE INDEX collection_object_idx_object_c ON collection_object (object); - -- -- Table: employee -- @@ -104,9 +44,17 @@ CREATE TABLE employee ( position integer NOT NULL, group_id integer, group_id_2 integer, + group_id_3 integer, name varchar(100) ); +-- +-- Table: encoded +-- +CREATE TABLE encoded ( + id INTEGER PRIMARY KEY NOT NULL, + encoded varchar(100) +); -- -- Table: event @@ -116,10 +64,11 @@ CREATE TABLE event ( starts_at datetime NOT NULL, created_on timestamp NOT NULL, varchar_date varchar(20), - varchar_datetime varchar(20) + varchar_datetime varchar(20), + skip_inflation datetime, + ts_without_tz datetime ); - -- -- Table: file_columns -- @@ -128,17 +77,6 @@ CREATE TABLE file_columns ( file varchar(255) NOT NULL ); - --- --- Table: forceforeign --- -CREATE TABLE forceforeign ( - artist INTEGER PRIMARY KEY NOT NULL, - cd integer NOT NULL -); - -CREATE INDEX forceforeign_idx_artist_forcef ON forceforeign (artist); - -- -- Table: fourkeys -- @@ -147,28 +85,11 @@ CREATE TABLE fourkeys ( bar integer NOT NULL, hello integer NOT NULL, goodbye integer NOT NULL, - sensors character NOT NULL, + sensors character(10) NOT NULL, + read_count integer, PRIMARY KEY (foo, bar, hello, goodbye) ); - --- --- Table: fourkeys_to_twokeys --- -CREATE TABLE fourkeys_to_twokeys ( - f_foo integer NOT NULL, - f_bar integer NOT NULL, - f_hello integer NOT NULL, - f_goodbye integer NOT NULL, - t_artist integer NOT NULL, - t_cd integer NOT NULL, - autopilot character NOT NULL, - PRIMARY KEY (f_foo, f_bar, f_hello, f_goodbye, t_artist, t_cd) -); - -CREATE INDEX fourkeys_to_twokeys_idx_f_foo_f_bar_f_hello_f_goodbye_ ON fourkeys_to_twokeys (f_foo, f_bar, f_hello, f_goodbye); -CREATE INDEX fourkeys_to_twokeys_idx_t_artist_t_cd_fourkeys_to ON fourkeys_to_twokeys (t_artist, t_cd); - -- -- Table: genre -- @@ -177,16 +98,7 @@ CREATE TABLE genre ( name varchar(100) NOT NULL ); -CREATE UNIQUE INDEX genre_name_genre ON genre (name); - --- --- Table: liner_notes --- -CREATE TABLE liner_notes ( - liner_id INTEGER PRIMARY KEY NOT NULL, - notes varchar(100) NOT NULL -); - +CREATE UNIQUE INDEX genre_name ON genre (name); -- -- Table: link @@ -197,6 +109,13 @@ CREATE TABLE link ( title varchar(100) ); +-- +-- Table: money_test +-- +CREATE TABLE money_test ( + id INTEGER PRIMARY KEY NOT NULL, + amount money +); -- -- Table: noprimarykey @@ -207,7 +126,7 @@ CREATE TABLE noprimarykey ( baz integer NOT NULL ); -CREATE UNIQUE INDEX foo_bar_noprimarykey ON noprimarykey (foo, bar); +CREATE UNIQUE INDEX foo_bar ON noprimarykey (foo, bar); -- -- Table: onekey @@ -218,16 +137,14 @@ CREATE TABLE onekey ( cd integer NOT NULL ); - -- -- Table: owners -- CREATE TABLE owners ( - ownerid INTEGER PRIMARY KEY NOT NULL, + id INTEGER PRIMARY KEY NOT NULL, name varchar(100) NOT NULL ); - -- -- Table: producer -- @@ -236,7 +153,7 @@ CREATE TABLE producer ( name varchar(100) NOT NULL ); -CREATE UNIQUE INDEX prod_name_producer ON producer (name); +CREATE UNIQUE INDEX prod_name ON producer (name); -- -- Table: self_ref @@ -246,19 +163,6 @@ CREATE TABLE self_ref ( name varchar(100) NOT NULL ); - --- --- Table: self_ref_alias --- -CREATE TABLE self_ref_alias ( - self_ref integer NOT NULL, - alias integer NOT NULL, - PRIMARY KEY (self_ref, alias) -); - -CREATE INDEX self_ref_alias_idx_alias_self_ ON self_ref_alias (alias); -CREATE INDEX self_ref_alias_idx_self_ref_se ON self_ref_alias (self_ref); - -- -- Table: sequence_test -- @@ -270,7 +174,6 @@ CREATE TABLE sequence_test ( PRIMARY KEY (pkid1, pkid2) ); - -- -- Table: serialized -- @@ -279,17 +182,100 @@ CREATE TABLE serialized ( serialized text NOT NULL ); +-- +-- Table: treelike +-- +CREATE TABLE treelike ( + id INTEGER PRIMARY KEY NOT NULL, + parent integer, + name varchar(100) NOT NULL +); + +CREATE INDEX treelike_idx_parent ON treelike (parent); -- --- Table: tags +-- Table: twokeytreelike -- -CREATE TABLE tags ( - tagid INTEGER PRIMARY KEY NOT NULL, - cd integer NOT NULL, - tag varchar(100) NOT NULL +CREATE TABLE twokeytreelike ( + id1 integer NOT NULL, + id2 integer NOT NULL, + parent1 integer NOT NULL, + parent2 integer NOT NULL, + name varchar(100) NOT NULL, + PRIMARY KEY (id1, id2) +); + +CREATE INDEX twokeytreelike_idx_parent1_parent2 ON twokeytreelike (parent1, parent2); + +CREATE UNIQUE INDEX tktlnameunique ON twokeytreelike (name); + +-- +-- Table: typed_object +-- +CREATE TABLE typed_object ( + objectid INTEGER PRIMARY KEY NOT NULL, + type varchar(100) NOT NULL, + value varchar(100) NOT NULL +); + +-- +-- Table: artist_undirected_map +-- +CREATE TABLE artist_undirected_map ( + id1 integer NOT NULL, + id2 integer NOT NULL, + PRIMARY KEY (id1, id2) +); + +CREATE INDEX artist_undirected_map_idx_id1 ON artist_undirected_map (id1); + +CREATE INDEX artist_undirected_map_idx_id2 ON artist_undirected_map (id2); + +-- +-- Table: bookmark +-- +CREATE TABLE bookmark ( + id INTEGER PRIMARY KEY NOT NULL, + link integer +); + +CREATE INDEX bookmark_idx_link ON bookmark (link); + +-- +-- Table: books +-- +CREATE TABLE books ( + id INTEGER PRIMARY KEY NOT NULL, + source varchar(100) NOT NULL, + owner integer NOT NULL, + title varchar(100) NOT NULL, + price integer +); + +CREATE INDEX books_idx_owner ON books (owner); + +-- +-- Table: forceforeign +-- +CREATE TABLE forceforeign ( + artist INTEGER PRIMARY KEY NOT NULL, + cd integer NOT NULL +); + +CREATE INDEX forceforeign_idx_artist ON forceforeign (artist); + +-- +-- Table: self_ref_alias +-- +CREATE TABLE self_ref_alias ( + self_ref integer NOT NULL, + alias integer NOT NULL, + PRIMARY KEY (self_ref, alias) ); -CREATE INDEX tags_idx_cd_tags ON tags (cd); +CREATE INDEX self_ref_alias_idx_alias ON self_ref_alias (alias); + +CREATE INDEX self_ref_alias_idx_self_ref ON self_ref_alias (self_ref); -- -- Table: track @@ -297,40 +283,128 @@ CREATE INDEX tags_idx_cd_tags ON tags (cd); CREATE TABLE track ( trackid INTEGER PRIMARY KEY NOT NULL, cd integer NOT NULL, - position integer NOT NULL, + position int NOT NULL, title varchar(100) NOT NULL, - last_updated_on datetime + last_updated_on datetime, + last_updated_at datetime, + small_dt smalldatetime ); -CREATE INDEX track_idx_cd_track ON track (cd); -CREATE UNIQUE INDEX track_cd_position_track ON track (cd, position); -CREATE UNIQUE INDEX track_cd_title_track ON track (cd, title); +CREATE INDEX track_idx_cd ON track (cd); + +CREATE UNIQUE INDEX track_cd_position ON track (cd, position); + +CREATE UNIQUE INDEX track_cd_title ON track (cd, title); -- --- Table: treelike +-- Table: cd -- -CREATE TABLE treelike ( +CREATE TABLE cd ( + cdid INTEGER PRIMARY KEY NOT NULL, + artist integer NOT NULL, + title varchar(100) NOT NULL, + year varchar(100) NOT NULL, + genreid integer, + single_track integer +); + +CREATE INDEX cd_idx_artist ON cd (artist); + +CREATE INDEX cd_idx_genreid ON cd (genreid); + +CREATE INDEX cd_idx_single_track ON cd (single_track); + +CREATE UNIQUE INDEX cd_artist_title ON cd (artist, title); + +-- +-- Table: collection_object +-- +CREATE TABLE collection_object ( + collection integer NOT NULL, + object integer NOT NULL, + PRIMARY KEY (collection, object) +); + +CREATE INDEX collection_object_idx_collection ON collection_object (collection); + +CREATE INDEX collection_object_idx_object ON collection_object (object); + +-- +-- Table: lyrics +-- +CREATE TABLE lyrics ( + lyric_id INTEGER PRIMARY KEY NOT NULL, + track_id integer NOT NULL +); + +CREATE INDEX lyrics_idx_track_id ON lyrics (track_id); + +-- +-- Table: cd_artwork +-- +CREATE TABLE cd_artwork ( + cd_id INTEGER PRIMARY KEY NOT NULL +); + +CREATE INDEX cd_artwork_idx_cd_id ON cd_artwork (cd_id); + +-- +-- Table: liner_notes +-- +CREATE TABLE liner_notes ( + liner_id INTEGER PRIMARY KEY NOT NULL, + notes varchar(100) NOT NULL +); + +CREATE INDEX liner_notes_idx_liner_id ON liner_notes (liner_id); + +-- +-- Table: lyric_versions +-- +CREATE TABLE lyric_versions ( id INTEGER PRIMARY KEY NOT NULL, - parent integer, - name varchar(100) NOT NULL + lyric_id integer NOT NULL, + text varchar(100) NOT NULL ); -CREATE INDEX treelike_idx_parent_treelike ON treelike (parent); +CREATE INDEX lyric_versions_idx_lyric_id ON lyric_versions (lyric_id); -- --- Table: twokeytreelike +-- Table: tags -- -CREATE TABLE twokeytreelike ( - id1 integer NOT NULL, - id2 integer NOT NULL, - parent1 integer NOT NULL, - parent2 integer NOT NULL, +CREATE TABLE tags ( + tagid INTEGER PRIMARY KEY NOT NULL, + cd integer NOT NULL, + tag varchar(100) NOT NULL +); + +CREATE INDEX tags_idx_cd ON tags (cd); + +-- +-- Table: cd_to_producer +-- +CREATE TABLE cd_to_producer ( + cd integer NOT NULL, + producer integer NOT NULL, + attribute integer, + PRIMARY KEY (cd, producer) +); + +CREATE INDEX cd_to_producer_idx_cd ON cd_to_producer (cd); + +CREATE INDEX cd_to_producer_idx_producer ON cd_to_producer (producer); + +-- +-- Table: images +-- +CREATE TABLE images ( + id INTEGER PRIMARY KEY NOT NULL, + artwork_id integer NOT NULL, name varchar(100) NOT NULL, - PRIMARY KEY (id1, id2) + data blob ); -CREATE INDEX twokeytreelike_idx_parent1_parent2_twokeytre ON twokeytreelike (parent1, parent2); -CREATE UNIQUE INDEX tktlnameunique_twokeytreelike ON twokeytreelike (name); +CREATE INDEX images_idx_artwork_id ON images (artwork_id); -- -- Table: twokeys @@ -341,16 +415,44 @@ CREATE TABLE twokeys ( PRIMARY KEY (artist, cd) ); -CREATE INDEX twokeys_idx_artist_twokeys ON twokeys (artist); +CREATE INDEX twokeys_idx_artist ON twokeys (artist); -- --- Table: typed_object +-- Table: artwork_to_artist -- -CREATE TABLE typed_object ( - objectid INTEGER PRIMARY KEY NOT NULL, - type varchar(100) NOT NULL, - value varchar(100) NOT NULL +CREATE TABLE artwork_to_artist ( + artwork_cd_id integer NOT NULL, + artist_id integer NOT NULL, + PRIMARY KEY (artwork_cd_id, artist_id) +); + +CREATE INDEX artwork_to_artist_idx_artist_id ON artwork_to_artist (artist_id); + +CREATE INDEX artwork_to_artist_idx_artwork_cd_id ON artwork_to_artist (artwork_cd_id); + +-- +-- Table: fourkeys_to_twokeys +-- +CREATE TABLE fourkeys_to_twokeys ( + f_foo integer NOT NULL, + f_bar integer NOT NULL, + f_hello integer NOT NULL, + f_goodbye integer NOT NULL, + t_artist integer NOT NULL, + t_cd integer NOT NULL, + autopilot character NOT NULL, + pilot_sequence integer, + PRIMARY KEY (f_foo, f_bar, f_hello, f_goodbye, t_artist, t_cd) ); +CREATE INDEX fourkeys_to_twokeys_idx_f_foo_f_bar_f_hello_f_goodbye ON fourkeys_to_twokeys (f_foo, f_bar, f_hello, f_goodbye); + +CREATE INDEX fourkeys_to_twokeys_idx_t_artist_t_cd ON fourkeys_to_twokeys (t_artist, t_cd); + +-- +-- View: year2000cds +-- +CREATE VIEW year2000cds AS + SELECT cdid, artist, title FROM cd WHERE year ='2000'; COMMIT;