Below is the file 'sql/init.sql' from this revision. You can also download the file.

CREATE TABLE proktos_results (
	updated timestamp without time zone,
	address inet,
	plugin_name varchar(256),
	tcp_ports varchar(256),
	udp_ports varchar(256),
	urgency varchar(256),
	short_mesg text,
	long_mesg text,
	advice text
);

CREATE TABLE proktos_urgency (
	urgency integer,
	description varchar(256)
);