projects
/
dbsrgits/DBIx-Class.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
proxying new storage method
[dbsrgits/DBIx-Class.git]
/
t
/
testlib
/
Thing.pm
Commit
Line
Data
3bec1f52
1
package Thing;
2
use base 'DBIx::Class::Test::SQLite';
3
4
Thing->set_table("thing");
5
Thing->columns(All => qw(id that_thing));
6
7
sub create_sql {
8
return qq{
9
id INTEGER,
10
that_thing INTEGER
11
};
12
}
13
14
1;