59fb81888f01265e6d2fd3a411ec9571a5bee7bc
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherThing.pm
1 package OtherThing;
2 use base 'DBIC::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 }