initial commit
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / Dummy.pm
CommitLineData
b974984a 1package # hide from PAUSE
2 DBICTest::Schema::Dummy;
3
4use base qw/DBICTest::BaseResult/;
5
6use strict;
7use 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
231;