Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherFilm.pm
CommitLineData
6a3bf251 1package # hide from PAUSE
c6d74d3e 2 OtherFilm;
ea2e61bf 3
4a233f30 4use warnings;
ea2e61bf 5use strict;
4a233f30 6
ea2e61bf 7use base 'Film';
8
9__PACKAGE__->set_table('Different_Film');
10
11sub create_sql {
6a3bf251 12 return qq{
13 title VARCHAR(255),
14 director VARCHAR(80),
15 codirector VARCHAR(80),
16 rating CHAR(5),
17 numexplodingsheep INTEGER,
18 hasvomit CHAR(1)
19 };
ea2e61bf 20}
21
221;
23