[Bast-commits] r5638 - in DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest: . Schema/28451

robkinyon at dev.catalyst.perl.org robkinyon at dev.catalyst.perl.org
Tue Feb 24 17:54:06 GMT 2009


Author: robkinyon
Date: 2009-02-24 17:54:06 +0000 (Tue, 24 Feb 2009)
New Revision: 5638

Modified:
   DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema.pm
   DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Account.pm
   DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Group.pm
   DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Person.pm
Log:
1 problem down, N to go

Modified: DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Account.pm
===================================================================
--- DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Account.pm	2009-02-24 17:45:50 UTC (rev 5637)
+++ DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Account.pm	2009-02-24 17:54:06 UTC (rev 5638)
@@ -7,7 +7,7 @@
 use base qw/DBIx::Class/;
 
 __PACKAGE__->load_components( qw/ Core PK::Auto / );
-__PACKAGE__->table( '28451_accounts' );
+__PACKAGE__->table( 'rt28451_accounts' );
 __PACKAGE__->add_columns( qw/ account_id username person_id / );
 __PACKAGE__->set_primary_key( qw/ account_id / );
 

Modified: DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Group.pm
===================================================================
--- DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Group.pm	2009-02-24 17:45:50 UTC (rev 5637)
+++ DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Group.pm	2009-02-24 17:54:06 UTC (rev 5638)
@@ -7,7 +7,7 @@
 use base qw/DBIx::Class/;
 
 __PACKAGE__->load_components( qw/ Core PK::Auto / );
-__PACKAGE__->table( '28451_groups' );
+__PACKAGE__->table( 'rt28451_groups' );
 __PACKAGE__->add_columns( qw/ group_id name account_id / );
 __PACKAGE__->set_primary_key( qw/ group_id / );
 

Modified: DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Person.pm
===================================================================
--- DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Person.pm	2009-02-24 17:45:50 UTC (rev 5637)
+++ DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema/28451/Person.pm	2009-02-24 17:54:06 UTC (rev 5638)
@@ -7,7 +7,7 @@
 use base qw/DBIx::Class/;
 
 __PACKAGE__->load_components( qw/ Core PK::Auto / );
-__PACKAGE__->table( '28451_people' );
+__PACKAGE__->table( 'rt28451_people' );
 __PACKAGE__->add_columns( qw/ person_id first_name group_id / );
 __PACKAGE__->set_primary_key( qw/ person_id / );
 

Modified: DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema.pm
===================================================================
--- DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema.pm	2009-02-24 17:45:50 UTC (rev 5637)
+++ DBIx-Class/0.08/branches/bugfix_28451/t/lib/DBICTest/Schema.pm	2009-02-24 17:54:06 UTC (rev 5638)
@@ -48,6 +48,9 @@
   qw/SelfRefAlias TreeLike TwoKeyTreeLike Event EventTZ NoPrimaryKey/,
   qw/Collection CollectionObject TypedObject Owners BooksInLibrary/,
   qw/ForceForeign Encoded/,
+
+  # These are for RT#28451
+  ( '28451::Account', '28451::Group', '28451::Person' ),
 );
 
 sub sqlt_deploy_hook {




More information about the Bast-commits mailing list