Cleanup/extend blob/clob detection/checks
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / BindType.pm
CommitLineData
6ec7d1bb 1package # hide from PAUSE
2 DBICTest::Schema::BindType;
3
660cf1be 4use base qw/DBICTest::BaseResult/;
6ec7d1bb 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);
26
27__PACKAGE__->set_primary_key('id');
28
291;