Add new test for basic sanity
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / MTITest / Result / Mixin.pm
CommitLineData
8b229aa6 1package MTITest::Result::Mixin;
2
3use strict;
4use warnings;
5use parent qw(DBIx::Class::Core);
6
7__PACKAGE__->table('mixin');
8
9__PACKAGE__->add_columns(
10 id => {
11 data_type => 'integer', is_auto_increment => 1, sequence => 'foo_id_seq'
12 },
13 words => { data_type => 'text' }
14);
15
16__PACKAGE__->set_primary_key('id');
17
181;