Fix unpredictable use of reverse_relationship_info() in the SQLT parser
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / SelfRef.pm
1 package # hide from PAUSE
2     DBICTest::Schema::SelfRef;
3
4 use warnings;
5 use strict;
6
7 use base qw/DBICTest::BaseResult/;
8
9 __PACKAGE__->table('self_ref');
10 __PACKAGE__->add_columns(
11   'id' => {
12     data_type => 'integer',
13     is_auto_increment => 1,
14   },
15   'name' => {
16     data_type => 'varchar',
17     size      => 100,
18   },
19 );
20 __PACKAGE__->set_primary_key('id');
21
22 __PACKAGE__->has_many( aliases => 'DBICTest::Schema::SelfRefAlias' => 'self_ref' );
23 __PACKAGE__->has_many( aliases_no_copy => 'DBICTest::Schema::SelfRefAlias' => 'self_ref', { cascade_copy => 0 } );
24
25 1;