File: TestSchema-0.001-PostgreSQL.sql

package info (click to toggle)
libdbix-class-helpers-perl 2.033004-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 980 kB
  • sloc: perl: 4,722; sql: 173; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 494 bytes parent folder | download
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 Fri Jan 26 09:33:21 2018
-- 
--
-- 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")
);