super basic test for dm::sqlt
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / Money.pm
CommitLineData
b974984a 1package # hide from PAUSE
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;