Support for relationship attributes in many_to_many accessors.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / NoPrimaryKey.pm
CommitLineData
89034887 1package # hide from PAUSE
2 DBICTest::Schema::NoPrimaryKey;
3
4use base 'DBIx::Class::Core';
5
6DBICTest::Schema::NoPrimaryKey->table('noprimarykey');
7DBICTest::Schema::NoPrimaryKey->add_columns(
8 'foo' => { data_type => 'integer' },
9 'bar' => { data_type => 'integer' },
10 'baz' => { data_type => 'integer' },
11);
12
13DBICTest::Schema::NoPrimaryKey->add_unique_constraint(foo_bar => [ qw/foo bar/ ]);
14
151;