New, failing SQLT deployment order test.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / CafeInsertion / Result / Coffee.pm
1 package    # hide from PAUSE
2     CafeInsertion::Result::Coffee;
3
4 use strict;
5 use warnings;
6 use parent 'DBIx::Class::Core';
7 use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI';
8
9 __PACKAGE__->table_class(MTI);
10 __PACKAGE__->table('coffee');
11 __PACKAGE__->add_columns(
12     "id",
13     {   data_type         => "integer",
14         is_auto_increment => 1,
15         sequence          => '_coffee_id_seq'
16     },
17     "flavor",
18     { data_type => "text", default_value => "good" },
19 );
20
21 __PACKAGE__->set_primary_key("id");
22
23 1;