Commit | Line | Data |
---|---|---|
c6d74d3e | 1 | package # hide from PAUSE |
2 | DBICTest::Schema::LinerNotes; | |
a02675cd | 3 | |
660cf1be | 4 | use base qw/DBICTest::BaseResult/; |
a02675cd | 5 | |
11357d09 | 6 | __PACKAGE__->table('liner_notes'); |
7 | __PACKAGE__->add_columns( | |
0009fa49 | 8 | 'liner_id' => { |
9 | data_type => 'integer', | |
10 | }, | |
11 | 'notes' => { | |
12 | data_type => 'varchar', | |
cb561d1a | 13 | size => 100, |
0009fa49 | 14 | }, |
15 | ); | |
11357d09 | 16 | __PACKAGE__->set_primary_key('liner_id'); |
17 | __PACKAGE__->belongs_to( | |
096f4212 | 18 | 'cd', 'DBICTest::Schema::CD', 'liner_id' |
19 | ); | |
a02675cd | 20 | |
21 | 1; |