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