First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Binary.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Binary;
ea2e61bf 3
ea2e61bf 4use strict;
5use 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
13sub schema { "id INTEGER, bin BYTEA" }
14
151;
16