Re-adding sequence to raw table not working
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / Cafe / Result / Coffee.pm
CommitLineData
c8e085ba 1package Cafe::Result::Coffee;
2
3use strict;
4use warnings;
5use parent 'DBIx::Class::Core';
6use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI';
7
8__PACKAGE__->table_class(MTI);
9__PACKAGE__->table('coffee');
10__PACKAGE__->add_columns(
e96b2eeb 11 "id", { data_type => "integer", is_auto_increment => 1},
c8e085ba 12 "flavor", { data_type => "text", default_value => "good" },
13);
14
15__PACKAGE__->set_primary_key("id");
16
171;