Commit | Line | Data |
---|---|---|
458e0292 | 1 | package # hide from PAUSE |
2 | DBICTest::Schema::Dummy; | |
3 | ||
660cf1be | 4 | use base qw/DBICTest::BaseResult/; |
458e0292 | 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 | 1; |