Back out constructor/prefetch rewrite introduced mainly by 43245ada4a
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / BindType.pm
CommitLineData
8273e845 1package # hide from PAUSE
6ec7d1bb 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 },
f3a9ea3d 25 'a_memo' => {
26 data_type => 'memo',
27 is_nullable => 1,
28 },
6ec7d1bb 29);
30
31__PACKAGE__->set_primary_key('id');
32
331;