minor cleanups
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / SingleBlob.pm
CommitLineData
5703eb14 1package # hide from PAUSE
2 DBICTest::Schema::SingleBlob;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('single_blob_test');
7
8__PACKAGE__->add_columns(
9 'id' => {
10 data_type => 'integer',
11 is_auto_increment => 1,
12 },
13 'blob' => {
14 data_type => 'blob',
15 is_nullable => 1,
16 },
17 'foo' => {
18 data_type => 'varchar',
19 is_nullable => 1,
20 }
21);
22
23__PACKAGE__->set_primary_key('id');
24
251;