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