deploy debugging and drop table statements
[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';
5
11b78bd6 6DBICTest::Schema::Track->table('track');
0009fa49 7DBICTest::Schema::Track->add_columns(
8 'trackid' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'cd' => {
13 data_type => 'integer',
14 },
15 'position' => {
16 data_type => 'integer',
91b0fbd7 17 accessor => 'pos',
0009fa49 18 },
19 'title' => {
20 data_type => 'varchar',
21 },
22);
11b78bd6 23DBICTest::Schema::Track->set_primary_key('trackid');
a02675cd 24
251;