Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Dummy.pm
CommitLineData
458e0292 1package # hide from PAUSE
2 DBICTest::Schema::Dummy;
3
458e0292 4use strict;
5use warnings;
6
4a233f30 7use base qw/DBICTest::BaseResult/;
8
458e0292 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 261;