projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Fix incorrect cond construction in _minimal_valueset_satisfying_constraint
[dbsrgits/DBIx-Class.git]
/
t
/
cdbi
/
testlib
/
Director.pm
1
package # hide from PAUSE
2
Director;
3
4
use warnings;
5
use strict;
6
7
use base 'DBIC::Test::SQLite';
8
9
__PACKAGE__->set_table('Directors');
10
__PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);
11
12
sub create_sql {
13
return qq{
14
name VARCHAR(80),
15
birthday INTEGER,
16
isinsane INTEGER
17
};
18
}
19
20
1;
21