Fixes to massive breakage introduced by 5948 ribasushi--
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherThing.pm
CommitLineData
3bec1f52 1package OtherThing;
97d61088 2use base 'DBIC::Test::SQLite';
3bec1f52 3
4OtherThing->set_table("other_thing");
5OtherThing->columns(All => qw(id));
6
7sub create_sql {
8 return qq{
9 id INTEGER
10 };
11}