The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Lazy;

BEGIN { unshift @INC, './t/cdbi-t/testlib'; }
use base 'Class::DBI::Test::SQLite';
use strict;

__PACKAGE__->set_table("Lazy");
__PACKAGE__->columns('Primary',   qw(this));
__PACKAGE__->columns('Essential', qw(opop));
__PACKAGE__->columns('things',    qw(this that));
__PACKAGE__->columns('horizon',   qw(eep orp));
__PACKAGE__->columns('vertical',  qw(oop opop));

sub create_sql {
	return qq{
		this INTEGER,
		that INTEGER,
		eep  INTEGER,
		orp  INTEGER,
		oop  INTEGER,
		opop INTEGER
	};
}

1;