Not sure what this part of the test is for, but it breaks custom resultsets, and...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Tag.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema::Tag;
a02675cd 3
4use base qw/DBIx::Class::Core/;
5
ff657a43 6__PACKAGE__->table('tags');
7__PACKAGE__->add_columns(
0009fa49 8 'tagid' => {
333cce60 9 data_type => 'integer',
0009fa49 10 is_auto_increment => 1,
11 },
12 'cd' => {
13 data_type => 'integer',
14 },
15 'tag' => {
cb561d1a 16 data_type => 'varchar',
17 size => 100,
0009fa49 18 },
19);
ff657a43 20__PACKAGE__->set_primary_key('tagid');
21
22__PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD' );
a02675cd 23
241;