%colinfo accessor and inflate_column now work together
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Track.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::Track;
a02675cd 3
4use base 'DBIx::Class::Core';
43556c5d 5__PACKAGE__->load_components(qw/InflateColumn::DateTime/);
a02675cd 6
ff657a43 7__PACKAGE__->table('track');
8__PACKAGE__->add_columns(
0009fa49 9 'trackid' => {
10 data_type => 'integer',
11 is_auto_increment => 1,
12 },
13 'cd' => {
14 data_type => 'integer',
15 },
16 'position' => {
17 data_type => 'integer',
91b0fbd7 18 accessor => 'pos',
0009fa49 19 },
20 'title' => {
21 data_type => 'varchar',
cb561d1a 22 size => 100,
0009fa49 23 },
43556c5d 24 last_updated_on => {
25 data_type => 'datetime',
26 accessor => 'updated_date',
27 is_nullable => 1
28 },
0009fa49 29);
ff657a43 30__PACKAGE__->set_primary_key('trackid');
31
365d06b7 32__PACKAGE__->add_unique_constraint([ qw/cd position/ ]);
33__PACKAGE__->add_unique_constraint([ qw/cd title/ ]);
34
ff657a43 35__PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD' );
36__PACKAGE__->belongs_to( disc => 'DBICTest::Schema::CD' => 'cd');
a02675cd 37
381;