Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Money.pm
CommitLineData
8273e845 1package # hide from PAUSE
818ec409 2 DBICTest::Schema::Money;
3
4a233f30 4use warnings;
5use strict;
6
818ec409 7use base qw/DBICTest::BaseResult/;
8
9__PACKAGE__->table('money_test');
10
11__PACKAGE__->add_columns(
12 'id' => {
13 data_type => 'integer',
14 is_auto_increment => 1,
15 },
16 'amount' => {
17 data_type => 'money',
18 is_nullable => 1,
19 },
20);
21
22__PACKAGE__->set_primary_key('id');
23
241;