Adjust MANIFEST
[dbsrgits/DBIx-Class.git] / t / 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