fixup to sqlite.sql
Matt S Trout [Thu, 22 Jun 2006 22:48:54 +0000 (22:48 +0000)]
t/lib/sqlite.sql

index 28e1e76..868aba1 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 22 22:47:36 2006
 -- 
 BEGIN TRANSACTION;
 
@@ -204,9 +204,4 @@ 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 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;