Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / testlib / Binary.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Binary;
ea2e61bf 3
4BEGIN { unshift @INC, './t/testlib'; }
5
6use strict;
7use base 'PgBase';
8
9__PACKAGE__->table(cdbibintest => 'cdbibintest');
10__PACKAGE__->sequence('binseq');
11__PACKAGE__->columns(All => qw(id bin));
12
13# __PACKAGE__->data_type(bin => DBI::SQL_BINARY);
14
15sub schema { "id INTEGER, bin BYTEA" }
16
171;
18