]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blob - t/lib/DBICTest/Schema/OneKey.pm
test case for might_have and another minor bug fix
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / lib / DBICTest / Schema / OneKey.pm
1 package # hide from PAUSE
2 DBICTest::Schema::OneKey;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->table('onekey');
7 __PACKAGE__->add_columns(
8 'id' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12 'artist' => {
13 data_type => 'integer',
14 },
15 'cd' => {
16 data_type => 'integer',
17 },
18 );
19 __PACKAGE__->set_primary_key('id');
20
21
22 1;
This page took 0.031908 seconds and 4 git commands to generate.