--
-- Created by SQL::Translator::Producer::SQLite
--- Created on Thu Jun 22 23:07:04 2006
+-- Created on Thu Jun 22 22:47:36 2006
--
BEGIN TRANSACTION;
CREATE UNIQUE INDEX tktlnameunique_twokeytreelike on twokeytreelike (name);
CREATE UNIQUE INDEX cd_artist_title_cd on cd (artist, 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;