projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
integrate nobindvars/_prep_for_execute with the bind_params changes (also converted...
[dbsrgits/DBIx-Class.git]
/
t
/
testlib
/
OtherThing.pm
1
package OtherThing;
2
use base 'DBIx::Class::Test::SQLite';
3
4
OtherThing->set_table("other_thing");
5
OtherThing->columns(All => qw(id));
6
7
sub create_sql {
8
return qq{
9
id INTEGER
10
};
11
}