Fixes to massive breakage introduced by 5948 ribasushi--
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Lazy.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Lazy;
ea2e61bf 3
97d61088 4use base 'DBIC::Test::SQLite';
ea2e61bf 5use strict;
6
7__PACKAGE__->set_table("Lazy");
8__PACKAGE__->columns('Primary', qw(this));
9__PACKAGE__->columns('Essential', qw(opop));
10__PACKAGE__->columns('things', qw(this that));
11__PACKAGE__->columns('horizon', qw(eep orp));
12__PACKAGE__->columns('vertical', qw(oop opop));
13
14sub create_sql {
15 return qq{
16 this INTEGER,
17 that INTEGER,
18 eep INTEGER,
19 orp INTEGER,
20 oop INTEGER,
21 opop INTEGER
22 };
23}
24
251;
26