1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
--
-- Created by SQL::Translator::Producer::PostgreSQL
-- Created on Tue Sep 16 19:48:36 2014
--
--
-- Table: Gnarly.
--
DROP TABLE "Gnarly" CASCADE;
CREATE TABLE "Gnarly" (
"id" integer NOT NULL,
"name" character varying NOT NULL,
"literature" text,
"your_mom" bytea,
PRIMARY KEY ("id")
);
--
-- Table: HasDateOps.
--
DROP TABLE "HasDateOps" CASCADE;
CREATE TABLE "HasDateOps" (
"id" integer NOT NULL,
"a_date" timestamp NOT NULL,
"b_date" timestamp,
PRIMARY KEY ("id")
);
|