]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/Tag.pm
test case for might_have and another minor bug fix
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / Tag.pm
1 package # hide from PAUSE
2 DBICTest::Schema::Tag;
3
4 use 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
24 __PACKAGE__->resultset_class( __PACKAGE__ . '::ResultSet');
25
26 package DBICTest::Schema::Tag::ResultSet;
27
28 use base qw( DBIx::Class::ResultSet::RecursiveUpdate );
29
30
31 1;
This page took 0.029535 seconds and 4 git commands to generate.