projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5d9710174bfafce22c8c76194a9eeffd43260f57
[dbsrgits/DBIx-Class.git]
/
t
/
cdbi
/
testlib
/
OtherFilm.pm
1
package # hide from PAUSE
2
OtherFilm;
3
4
use strict;
5
use base 'Film';
6
7
__PACKAGE__->set_table('Different_Film');
8
9
sub create_sql {
10
return qq{
11
title VARCHAR(255),
12
director VARCHAR(80),
13
codirector VARCHAR(80),
14
rating CHAR(5),
15
numexplodingsheep INTEGER,
16
hasvomit CHAR(1)
17
};
18
}
19
20
1;
21