projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Moving towards instance-based schemas
[dbsrgits/DBIx-Class.git]
/
t
/
lib
/
DBICTest
/
Schema
/
TwoKeys.pm
1
package DBICTest::Schema::TwoKeys;
2
3
use base 'DBIx::Class::Core';
4
5
DBICTest::Schema::TwoKeys->table('twokeys');
6
DBICTest::Schema::TwoKeys->add_columns(qw/artist cd/);
7
DBICTest::Schema::TwoKeys->set_primary_key(qw/artist cd/);
8
9
1;