Working on sequences
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / NoSequenceSalad / Result / Dressing.pm
CommitLineData
90cf1bcf 1package # hide from PAUSE
2 NoSequenceSalad::Result::Dressing;
70955816 3
4use strict;
5use warnings;
6use parent 'DBIx::Class::Core';
7
8__PACKAGE__->table('dressing');
9
10__PACKAGE__->add_columns(
11 id => {
12 data_type => 'integer',
13 is_auto_increment => 1,
14 },
15 acidity => { data_type => 'integer', default => '2' }
16);
17
18__PACKAGE__->set_primary_key('id');
19
201;