Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Money.pm
CommitLineData
8273e845 1package # hide from PAUSE
818ec409 2 DBICTest::Schema::Money;
3
4use base qw/DBICTest::BaseResult/;
5
6__PACKAGE__->table('money_test');
7
8__PACKAGE__->add_columns(
9 'id' => {
10 data_type => 'integer',
11 is_auto_increment => 1,
12 },
13 'amount' => {
14 data_type => 'money',
15 is_nullable => 1,
16 },
17);
18
19__PACKAGE__->set_primary_key('id');
20
211;