Commit | Line | Data |
---|---|---|
65c2b042 | 1 | package # hide from PAUSE |
2 | DBICTest::Schema::SelfRef; | |
3 | ||
4 | use base qw/DBICTest::BaseResult/; | |
5 | ||
6 | __PACKAGE__->table('self_ref'); | |
7 | __PACKAGE__->add_columns( | |
8 | 'id' => { | |
9 | data_type => 'integer', | |
10 | is_auto_increment => 1, | |
11 | }, | |
12 | 'name' => { | |
13 | data_type => 'varchar', | |
14 | size => 100, | |
15 | }, | |
16 | ); | |
17 | __PACKAGE__->set_primary_key('id'); | |
18 | ||
19 | __PACKAGE__->has_many( aliases => 'DBICTest::Schema::SelfRefAlias' => 'self_ref' ); | |
20 | ||
21 | 1; |