Release 0.02
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / CafeInsertion / Result / Cream.pm
CommitLineData
c965b761 1package # hide from PAUSE
2 CafeInsertion::Result::Cream;
3
4use strict;
5use warnings;
6use parent 'DBIx::Class::Core';
7
8__PACKAGE__->table('cream');
9
10__PACKAGE__->add_columns(
11 id => {
12 data_type => 'integer',
13 is_auto_increment => 1,
14 },
15 fat_free => { data_type => 'boolean', default => 0 }
16);
17
18__PACKAGE__->set_primary_key('id');
19
201;