d05e8178bac26848c6be2a3129d8bd0f9858d360
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Lazy.pm
1 package # hide from PAUSE
2     Lazy;
3
4 use base 'DBIC::Test::SQLite';
5 use 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
14 sub 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
25 1;
26