aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-04-30 09:35:40 +0300
committerAqua-sama <aqua@iserlohn-fortress.net>2021-04-30 09:35:40 +0300
commitcf270f3726a8037ebef80888eb510172688e13a7 (patch)
treeb0440dbdb1d2e9cfcb942e6cc103f9da7910b902 /etc
parentCRUD reports (diff)
downloadbugtracker-cf270f3726a8037ebef80888eb510172688e13a7.tar.xz
CRUD bugs
Diffstat (limited to 'etc')
-rw-r--r--etc/setup.sql3
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/setup.sql b/etc/setup.sql
index 35ddea4..5ca866f 100644
--- a/etc/setup.sql
+++ b/etc/setup.sql
@@ -13,8 +13,7 @@ CREATE TABLE bugs (
id SERIAL PRIMARY KEY,
title varchar(50) NOT NULL,
description text NOT NULL,
-author integer NOT NULL REFERENCES users(id),
-assignee integer REFERENCES users(id)
+author integer NOT NULL REFERENCES users(id)
);
-- reports table