Add test files and test for vie
[dbsrgits/DBIx-Class.git] / t / lib / ViewDeps / Result / Mixin.pm
CommitLineData
6ebf5cbb 1package # hide from PAUSE
2 ViewDeps::Result::Mixin;
3
4use strict;
5use warnings;
6use parent qw(DBIx::Class::Core);
7
8__PACKAGE__->table('mixin');
9
10__PACKAGE__->add_columns(
11 id => {
12 data_type => 'integer', is_auto_increment => 1, sequence => 'foo_id_seq'
13 },
14 words => { data_type => 'text' }
15);
16
17__PACKAGE__->set_primary_key('id');
18
191;