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