Skip to content

Commit

Permalink
Add template to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
strassl committed Jan 30, 2017
1 parent ef9197c commit c67ecb3
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions backend/src/main/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ BEGIN;


CREATE TABLE IF NOT EXISTS "project" (
"id" UUID PRIMARY KEY,
"name" TEXT NOT NULL,
"description" TEXT NOT NULL,
"creation_date" TIMESTAMP NOT NULL,
"icon_mime_info" TEXT,
"icon" BYTEA,
"disabled" BOOLEAN NOT NULL
"id" UUID PRIMARY KEY,
"name" TEXT NOT NULL,
"description" TEXT NOT NULL,
"creation_date" TIMESTAMP NOT NULL,
"icon_mime_info" TEXT,
"icon" BYTEA,
"ticket_template" TEXT NOT NULL,
"disabled" BOOLEAN NOT NULL
);

CREATE TABLE IF NOT EXISTS "assignment_tag" (
Expand Down

0 comments on commit c67ecb3

Please sign in to comment.