Skip to content

Commit

Permalink
updated schema
Browse files Browse the repository at this point in the history
  • Loading branch information
alxford45 committed Nov 29, 2020
1 parent 4eef1ab commit c469f20
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ create table if not exists ticket
status varchar(20) not null,
problem_category varchar(50) not null,
description varchar(500),
core_issue varchar(50)
core_issue varchar(50),
submission_date timestamp without time zone
);

alter table ticket owner to brvuirrqqcjzsb;
Expand Down Expand Up @@ -67,7 +68,9 @@ create table if not exists assignment
ticket_id integer not null
constraint assignment_ticket_ticket_id_fk
references ticket
on update cascade on delete cascade
on update cascade on delete cascade,
assigned_date timestamp without time zone

);

alter table assignment owner to brvuirrqqcjzsb;
Expand Down

0 comments on commit c469f20

Please sign in to comment.