sql/1.sql
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 17 Oct 2011 09:12:00 -0700
changeset 10 d07309450285
parent 7 e4f1a551d45c
child 12 191b3c25974a
permissions -rw-r--r--
Get the ragel line parser properly tokenizing the input lines. Add a "lines per second" timer. General cleanup and memory management.

--- vim: set noet nosta sw=4 ts=4 ft=sql:

BEGIN;

DROP TABLE IF EXISTS rules;
CREATE TABLE rules (
	redir TINYINT NOT NULL DEFAULT 0 CHECK( redir IN (0,1,2) )
);

COMMIT;