New, failing SQLT deployment order test.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / LoadTest / Result / Mixin.pm
CommitLineData
b5c5e046 1package # hide from PAUSE
2 LoadTest::Result::Mixin;
8b229aa6 3
4use strict;
5use warnings;
b5c5e046 6use parent 'DBIx::Class::Core';
8b229aa6 7
8__PACKAGE__->table('mixin');
9
10__PACKAGE__->add_columns(
b5c5e046 11 id => {
12 data_type => 'integer',
13 is_auto_increment => 1,
14 sequence => 'foo_id_seq'
15 },
16 words => { data_type => 'text' }
8b229aa6 17);
18
19__PACKAGE__->set_primary_key('id');
20
211;