Proper support for timestamp inflation. Added last_updated_at to DBICTest::Schema...
[dbsrgits/DBIx-Class.git] / t / lib / sqlite.sql
index 9e8aaa6..0eef182 100644 (file)
@@ -375,7 +375,8 @@ CREATE TABLE track (
   cd integer NOT NULL,
   position integer NOT NULL,
   title varchar(100) NOT NULL,
-  last_updated_on datetime
+  last_updated_on datetime,
+  last_updated_at datetime
 );
 
 CREATE INDEX track_idx_cd_track ON track (cd);