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
/
OneKey.pm
1
package DBICTest::Schema::OneKey;
2
3
use base 'DBIx::Class::Core';
4
5
DBICTest::Schema::OneKey->table('onekey');
6
DBICTest::Schema::OneKey->add_columns(qw/id artist cd/);
7
DBICTest::Schema::OneKey->set_primary_key('id');
8
9
10
1;