[Bast-commits] r8919 - in
DBIx-Class/0.08/branches/storage-interbase: maint t/lib
caelum at dev.catalyst.perl.org
caelum at dev.catalyst.perl.org
Sat Mar 6 23:05:25 GMT 2010
Author: caelum
Date: 2010-03-06 23:05:25 +0000 (Sat, 06 Mar 2010)
New Revision: 8919
Modified:
DBIx-Class/0.08/branches/storage-interbase/maint/gen-schema.pl
DBIx-Class/0.08/branches/storage-interbase/t/lib/sqlite.sql
Log:
remove connect_info from maint/gen-schema.pl
Modified: DBIx-Class/0.08/branches/storage-interbase/maint/gen-schema.pl
===================================================================
--- DBIx-Class/0.08/branches/storage-interbase/maint/gen-schema.pl 2010-03-06 23:03:18 UTC (rev 8918)
+++ DBIx-Class/0.08/branches/storage-interbase/maint/gen-schema.pl 2010-03-06 23:05:25 UTC (rev 8919)
@@ -4,11 +4,10 @@
use warnings;
use lib qw(lib t/lib);
-use DBICTest;
use DBICTest::Schema;
use SQL::Translator;
-my $schema = DBICTest::Schema->connect(DBICTest->_database);
+my $schema = DBICTest::Schema->connect;
print scalar ($schema->storage->deployment_statements(
$schema,
'SQLite',
Modified: DBIx-Class/0.08/branches/storage-interbase/t/lib/sqlite.sql
===================================================================
--- DBIx-Class/0.08/branches/storage-interbase/t/lib/sqlite.sql 2010-03-06 23:03:18 UTC (rev 8918)
+++ DBIx-Class/0.08/branches/storage-interbase/t/lib/sqlite.sql 2010-03-06 23:05:25 UTC (rev 8919)
@@ -1,7 +1,8 @@
--
-- Created by SQL::Translator::Producer::SQLite
--- Created on Sat Mar 6 11:57:45 2010
+-- Created on Sat Mar 6 18:04:27 2010
--
+;
--
-- Table: artist
@@ -444,4 +445,4 @@
-- View: year2000cds
--
CREATE VIEW year2000cds AS
- SELECT cdid, artist, title, year, genreid, single_track FROM cd WHERE year = "2000"
+ SELECT cdid, artist, title, year, genreid, single_track FROM cd WHERE year = "2000"
\ No newline at end of file
More information about the Bast-commits
mailing list