[Bast-commits] r7140 - DBIx-Class/0.08/trunk/t/lib

caelum at dev.catalyst.perl.org caelum at dev.catalyst.perl.org
Thu Jul 30 12:46:04 GMT 2009


Author: caelum
Date: 2009-07-30 12:46:04 +0000 (Thu, 30 Jul 2009)
New Revision: 7140

Modified:
   DBIx-Class/0.08/trunk/t/lib/sqlite.sql
Log:
update sqlite test schema

Modified: DBIx-Class/0.08/trunk/t/lib/sqlite.sql
===================================================================
--- DBIx-Class/0.08/trunk/t/lib/sqlite.sql	2009-07-30 11:29:19 UTC (rev 7139)
+++ DBIx-Class/0.08/trunk/t/lib/sqlite.sql	2009-07-30 12:46:04 UTC (rev 7140)
@@ -1,6 +1,6 @@
 -- 
 -- Created by SQL::Translator::Producer::SQLite
--- Created on Sat Jun 27 14:02:39 2009
+-- Created on Thu Jul 30 08:44:22 2009
 -- 
 
 
@@ -63,7 +63,8 @@
   created_on timestamp NOT NULL,
   varchar_date varchar(20),
   varchar_datetime varchar(20),
-  skip_inflation datetime
+  skip_inflation datetime,
+  ts_without_tz datetime
 );
 
 --
@@ -107,6 +108,14 @@
 );
 
 --
+-- Table: money_test
+--
+CREATE TABLE money_test (
+  id INTEGER PRIMARY KEY NOT NULL,
+  amount money
+);
+
+--
 -- Table: noprimarykey
 --
 CREATE TABLE noprimarykey (
@@ -225,7 +234,7 @@
 --
 CREATE TABLE bookmark (
   id INTEGER PRIMARY KEY NOT NULL,
-  link integer NOT NULL
+  link integer
 );
 
 CREATE INDEX bookmark_idx_link ON bookmark (link);




More information about the Bast-commits mailing list