Merge 'datetime' into 'DBIx-Class-current'
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Setup.pm
index b493cb6..b327e48 100755 (executable)
@@ -137,6 +137,11 @@ $schema->populate('Track', [
   [ 18, 1, 3, "Beehind You"],
 ]);
 
+$schema->populate('Event', [
+  [ qw/id starts_at/ ],
+  [ 1, '2006-04-25 22:24:33' ],
+]);
+
 $schema->populate('Link', [
   [ qw/id title/ ],
   [ 1, 'aaa' ]
@@ -147,4 +152,9 @@ $schema->populate('Bookmark', [
   [ 1, 1 ]
 ]);
 
+$schema->populate('Event', [
+  [ qw/id starts_at/ ],
+  [ 1, '2006-04-25 22:24:33' ],
+]);
+
 1;