--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Mon Apr 4 11:48:03 2011
--
BEGIN TRANSACTION;
--
-- Table: user
--
CREATE TABLE user (
id character(10) NOT NULL,
created_on timestamp with time zone NOT NULL,
updated_on timestamp with time zone NOT NULL,
email NOT NULL,
first NOT NULL,
last NOT NULL,
PRIMARY KEY (id)
);
COMMIT;