added some notes in the tests and fixed get_from_storage to actually use the new...
[dbsrgits/DBIx-Class.git] / t / testlib / Order.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Order;
ea2e61bf 3
4BEGIN { unshift @INC, './t/testlib'; }
5
6use strict;
7use base 'DBIx::Class::Test::SQLite';
8
9__PACKAGE__->set_table('orders');
10__PACKAGE__->table_alias('orders');
11__PACKAGE__->columns(Primary => 'film');
12__PACKAGE__->columns(Others => qw/orders/);
13
14sub create_sql {
15 return qq{
16 film VARCHAR(255),
17 orders INTEGER
18 };
19}
20
211;
22