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 | |
f70b86f9 |
23 | # part of a test, do not remove |
24 | __PACKAGE__->sequence('bogus'); |
25 | |
458e0292 |
26 | 1; |