Fix updating multiple CLOB/BLOB columns on Oracle
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / BindType.pm
CommitLineData
8273e845 1package # hide from PAUSE
6ec7d1bb 2 DBICTest::Schema::BindType;
3
4a233f30 4use warnings;
5use strict;
6
660cf1be 7use base qw/DBICTest::BaseResult/;
6ec7d1bb 8
9__PACKAGE__->table('bindtype_test');
10
11__PACKAGE__->add_columns(
12 'id' => {
13 data_type => 'integer',
14 is_auto_increment => 1,
15 },
16 'bytea' => {
17 data_type => 'bytea',
18 is_nullable => 1,
19 },
20 'blob' => {
21 data_type => 'blob',
22 is_nullable => 1,
23 },
74b5397c 24 'blob2' => {
25 data_type => 'blob',
26 is_nullable => 1,
27 },
6ec7d1bb 28 'clob' => {
29 data_type => 'clob',
30 is_nullable => 1,
31 },
74b5397c 32 'clob2' => {
33 data_type => 'clob',
34 is_nullable => 1,
35 },
f3a9ea3d 36 'a_memo' => {
37 data_type => 'memo',
38 is_nullable => 1,
39 },
6ec7d1bb 40);
41
42__PACKAGE__->set_primary_key('id');
43
441;