Was replaced by ODBC.pm and ODBC/DB2_400_SQL.pm
[dbsrgits/DBIx-Class-Historic.git] / t / lib / sqlite.sql
index 28e1e76..e4d4e6a 100644 (file)
@@ -1,6 +1,6 @@
 -- 
 -- Created by SQL::Translator::Producer::SQLite
--- Created on Thu Jun 22 23:07:04 2006
+-- Created on Thu Jun  6 23:36:19 2006
 -- 
 BEGIN TRANSACTION;
 
@@ -203,10 +203,7 @@ CREATE TABLE onekey (
 
 CREATE UNIQUE INDEX tktlnameunique_twokeytreelike on twokeytreelike (name);
 CREATE UNIQUE INDEX cd_artist_title_cd on cd (artist, title);
+CREATE UNIQUE INDEX track_cd_position_track on track (cd, position);
+CREATE UNIQUE INDEX track_cd_title_track on track (cd, title);
 CREATE UNIQUE INDEX prod_name_producer on producer (name);
-CREATE TRIGGER ts_event after insert on event
-begin
-  update event set created_on=timestamp() where id=new.id;
-end;
-
 COMMIT;