The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
--
-- SQL comand to create the tables need by the test scripts
-- 
CREATE TABLE Class (
	Id SERIAL PRIMARY KEY,
	Name VARCHAR(25)
);
CREATE TABLE Item (
	Id	SERIAL PRIMARY KEY,
	Name	VARCHAR(25),
	Class	INTEGER,
	FOREIGN KEY(Class) REFERENCES Class
);