ec9698f5cea75b5ad9dc55605c4d997a7dbdf4a8
[dbsrgits/DBIx-Class-Fixtures.git] / t / lib / DBICTest / Schema2 / Friend.pm
1 package # hide from PAUSE 
2     DBICTest::Schema2::Friend;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->table('friend');
7 __PACKAGE__->add_columns(
8   'friendid' => {
9     data_type => 'integer',
10     is_auto_increment => 1
11   },
12   'name' => {
13     data_type => 'varchar',
14     size      => 100,
15   },
16 );
17 __PACKAGE__->set_primary_key('friendid');
18 __PACKAGE__->add_unique_constraint(prod_name => [ qw/name/ ]);
19
20 1;