Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / BindType.pm
1 package # hide from PAUSE
2     DBICTest::Schema::BindType;
3
4 use warnings;
5 use strict;
6
7 use base qw/DBICTest::BaseResult/;
8
9 __PACKAGE__->table('bindtype_test');
10
11 __PACKAGE__->add_columns(
12   'id' => {
13     data_type => 'integer',
14     is_auto_increment => 1,
15   },
16   'bytea' => {
17     data_type => 'bytea',
18     is_nullable => 1,
19   },
20   'blob' => {
21     data_type => 'blob',
22     is_nullable => 1,
23   },
24   'clob' => {
25     data_type => 'clob',
26     is_nullable => 1,
27   },
28   'a_memo' => {
29     data_type => 'memo',
30     is_nullable => 1,
31   },
32 );
33
34 __PACKAGE__->set_primary_key('id');
35
36 1;