b4ab7364fb0c0f4f6f812b24494a5f7a3537c851
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Dummy.pm
1 package # hide from PAUSE
2     DBICTest::Schema::Dummy;
3
4 use base qw/DBICTest::BaseResult/;
5
6 use strict;
7 use warnings;
8
9 __PACKAGE__->table('dummy');
10 __PACKAGE__->add_columns(
11     'id' => {
12         data_type => 'integer',
13         is_auto_increment => 1
14     },
15     'gittery' => {
16         data_type => 'varchar',
17         size      => 100,
18         is_nullable => 1,
19     },
20 );
21 __PACKAGE__->set_primary_key('id');
22
23 # part of a test, do not remove
24 __PACKAGE__->sequence('bogus');
25
26 1;