]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/Event.pm
tests from multicreate
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / Event.pm
1 package DBICTest::Schema::Event;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Core/;
6
7 __PACKAGE__->load_components(qw/InflateColumn::DateTime/);
8
9 __PACKAGE__->table('event');
10
11 __PACKAGE__->add_columns(
12 id => { data_type => 'integer', is_auto_increment => 1 },
13 starts_at => { data_type => 'datetime', datetime_undef_if_invalid => 1 },
14 created_on => { data_type => 'timestamp' },
15 varchar_date => { data_type => 'varchar', inflate_date => 1, size => 20, is_nullable => 1 },
16 varchar_datetime => { data_type => 'varchar', inflate_datetime => 1, size => 20, is_nullable => 1 },
17 skip_inflation => { data_type => 'datetime', inflate_datetime => 0, is_nullable => 1 },
18 );
19
20 __PACKAGE__->set_primary_key('id');
21
22 1;
This page took 0.029997 seconds and 4 git commands to generate.