Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Order.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 Order;
ea2e61bf 3
ea2e61bf 4use strict;
97d61088 5use base 'DBIC::Test::SQLite';
ea2e61bf 6
7__PACKAGE__->set_table('orders');
8__PACKAGE__->table_alias('orders');
9__PACKAGE__->columns(Primary => 'film');
10__PACKAGE__->columns(Others => qw/orders/);
11
12sub create_sql {
6a3bf251 13 return qq{
14 film VARCHAR(255),
15 orders INTEGER
16 };
ea2e61bf 17}
18
191;
20