update test case for bug fix
[dbsrgits/DBIx-Class-DateTime-Epoch.git] / t / lib / MySchema / Foo.pm
CommitLineData
8e52f1da 1package MySchema::Foo;
2
3use strict;
4use warnings;
5
6use base qw( DBIx::Class );
7
8__PACKAGE__->load_components( qw( DateTime::Epoch TimeStamp Core ) );
9__PACKAGE__->table( 'foo' );
10__PACKAGE__->add_columns(
11 id => {
12 data_type => 'bigint',
13 is_auto_increment => 1,
14 is_nullable => 0,
15 },
16 name => {
17 data_type => 'varchar',
18 size => 10,
19 is_nullable => 1,
20 },
21 bar => { # epoch stored as an int
22 data_type => 'bigint',
23 inflate_datetime => 1,
24 },
25 baz => { # epoch stored as a string
26 data_type => 'varchar',
27 size => 50,
28 inflate_datetime => 'epoch',
29 },
30 # working in conjunction with DBIx::Class::TimeStamp
31 creation_time => {
32 data_type => 'bigint',
33 inflate_datetime => 1,
34 set_on_create => 1,
35 },
36 modification_time => {
37 data_type => 'bigint',
38 inflate_datetime => 1,
39 set_on_create => 1,
40 set_on_update => 1,
7ec868bf 41 },
42 update_time => {
43 data_type => 'datetime',
44 set_on_create => 1,
45 set_on_update => 1,
46 is_nullable => 1,
47 },
48
8e52f1da 49);
50
51__PACKAGE__->set_primary_key( 'id' );
52
531;