Adjust MANIFEST
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Binary.pm
1 package # hide from PAUSE
2     Binary;
3
4 use strict;
5 use base 'PgBase';
6
7 __PACKAGE__->table(cdbibintest => 'cdbibintest');
8 __PACKAGE__->sequence('binseq');
9 __PACKAGE__->columns(All => qw(id bin));
10
11 # __PACKAGE__->data_type(bin => DBI::SQL_BINARY);
12
13 sub schema { "id INTEGER, bin BYTEA" }
14
15 1;
16