Debugging why sqlt deployment order of views is wrong.
[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",     { data_type => "integer", is_auto_increment => 1, sequence => '_coffee_id_seq'},
13     "flavor", { data_type => "text",    default_value     => "good" },
14 );
15
16 __PACKAGE__->set_primary_key("id");
17
18 1;