sql/1.sql
author Mahlon E. Smith <mahlon@martini.nu>
Wed, 28 Sep 2011 09:04:16 -0700
changeset 9 bdf20e6eefd7
parent 7 e4f1a551d45c
child 10 d07309450285
permissions -rw-r--r--
Ansi-fy getopt function and variable declarations.

BEGIN;

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

COMMIT;