Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherFilm.pm
1 package # hide from PAUSE
2     OtherFilm;
3
4 use warnings;
5 use strict;
6
7 use base 'Film';
8
9 __PACKAGE__->set_table('Different_Film');
10
11 sub create_sql {
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   };
20 }
21
22 1;
23