Initial commit of DBIx::Class (experimental Class::DBI-inspired ORM)
[dbsrgits/DBIx-Class.git] / t / testlib / Lazy.pm
1 package Lazy;
2
3 BEGIN { unshift @INC, './t/testlib'; }
4 use base 'DBIx::Class::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