Commit | Line | Data |
---|---|---|
c6d74d3e | 1 | package # hide from PAUSE |
2 | DBICTest::Schema::OneKey; | |
a02675cd | 3 | |
660cf1be | 4 | use base qw/DBICTest::BaseResult/; |
a02675cd | 5 | |
11357d09 | 6 | __PACKAGE__->table('onekey'); |
7 | __PACKAGE__->add_columns( | |
0009fa49 | 8 | 'id' => { |
9 | data_type => 'integer', | |
10 | is_auto_increment => 1, | |
11 | }, | |
12 | 'artist' => { | |
13 | data_type => 'integer', | |
14 | }, | |
15 | 'cd' => { | |
16 | data_type => 'integer', | |
17 | }, | |
18 | ); | |
11357d09 | 19 | __PACKAGE__->set_primary_key('id'); |
a02675cd | 20 | |
21 | ||
22 | 1; |