Debugging why sqlt deployment order of views is wrong.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / CafeInsertion / Result / Coffee.pm
CommitLineData
3365fc70 1package # hide from PAUSE
2 CafeInsertion::Result::Coffee;
c8e085ba 3
4use strict;
5use warnings;
6use parent 'DBIx::Class::Core';
7use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI';
8
9__PACKAGE__->table_class(MTI);
10__PACKAGE__->table('coffee');
11__PACKAGE__->add_columns(
70955816 12 "id", { data_type => "integer", is_auto_increment => 1, sequence => '_coffee_id_seq'},
c8e085ba 13 "flavor", { data_type => "text", default_value => "good" },
14);
15
16__PACKAGE__->set_primary_key("id");
17
181;