added back the r3131 tests in concise form, wrapped S::DBI::_execute in dbh_do to fix
[dbsrgits/DBIx-Class.git] / t / 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 }