Constraint/index name fix from rdj
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
index f8b9816..a07db60 100644 (file)
@@ -6,11 +6,11 @@ use base qw/DBIx::Class::Schema/;
 no warnings qw/qw/;
 
 __PACKAGE__->load_classes(qw/
-  Agent
   Artist
+  SequenceTest
   Employee
   CD
-  Label
+  FileColumn
   Link
   Bookmark
   #dummy
@@ -35,7 +35,17 @@ __PACKAGE__->load_classes(qw/
     'Producer',
     'CD_to_Producer',
   ),
-  qw/SelfRefAlias TreeLike TwoKeyTreeLike Event NoPrimaryKey/
+  qw/SelfRefAlias TreeLike TwoKeyTreeLike Event EventTZ NoPrimaryKey/,
+  qw/Collection CollectionObject TypedObject/,
+  qw/Owners BooksInLibrary/,
+  qw/ForceForeign/,
+  qw/LongColumns/,
 );
 
+sub sqlt_deploy_hook {
+  my ($self, $sqlt_schema) = @_;
+
+  $sqlt_schema->drop_table('link');
+}
+
 1;