Adjust MANIFEST
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherThing.pm
1 package OtherThing;
2 use base 'DBIx::Class::Test::SQLite';
3
4 OtherThing->set_table("other_thing");
5 OtherThing->columns(All => qw(id));
6
7 sub create_sql {
8     return qq{
9         id              INTEGER
10     };
11 }