minor cleanups
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / SingleBlob.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::SingleBlob;
3
4 use 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
25 1;