sql/1.sql
author Mahlon E. Smith <mahlon@laika.com>
Wed, 14 Sep 2011 16:49:28 -0700
changeset 4 5701b7859a31
child 7 e4f1a551d45c
permissions -rw-r--r--
Groundwork for automatic database initialization and schema upgrades.

BEGIN;

DROP TABLE IF EXISTS init;
CREATE TABLE init ( bar INT );

COMMIT;