basic structure in place
[dbsrgits/DBIx-Class-ResultSet-WithMetaData.git] / t / lib / DBICTest / Schema / Tag.pm
CommitLineData
b8e6d226 1package # hide from PAUSE
2 DBICTest::Schema::Tag;
3
4use base qw/DBIx::Class::Core/;
5
6__PACKAGE__->table('tags');
7__PACKAGE__->add_columns(
8 'tagid' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'cd' => {
13 data_type => 'integer',
14 },
15 'tag' => {
16 data_type => 'varchar',
17 size => 100,
18 },
19);
20__PACKAGE__->set_primary_key('tagid');
21
22__PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD' );
23
241;