From: Matt S Trout Date: Thu, 22 Jun 2006 22:48:54 +0000 (+0000) Subject: fixup to sqlite.sql X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=55565ac71a5932ec5726df3400f4af65865d5c24;p=dbsrgits%2FDBIx-Class-Historic.git fixup to sqlite.sql --- diff --git a/t/lib/sqlite.sql b/t/lib/sqlite.sql index 28e1e76..868aba1 100644 --- a/t/lib/sqlite.sql +++ b/t/lib/sqlite.sql @@ -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;