New, failing SQLT deployment order test.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / CafeInsertion / Result / Sugar.pm
CommitLineData
b5c5e046 1package # hide from PAUSE
2 CafeInsertion::Result::Sugar;
c8e085ba 3
4use strict;
5use warnings;
6use parent 'DBIx::Class::Core';
7
8__PACKAGE__->table('sugar');
9
10__PACKAGE__->add_columns(
11 id => {
12 data_type => 'integer',
13 is_auto_increment => 1,
14 },
15 sweetness => { data_type => 'integer', default => '2' }
16);
17
18__PACKAGE__->set_primary_key('id');
19
201;