Skip to content

Commit

Permalink
Merge pull request #1544 from NASA-AMMOS/fix/migration-typo
Browse files Browse the repository at this point in the history
Hook workspace fk up to the correct table in migration
  • Loading branch information
Mythicaeda authored Sep 4, 2024
2 parents 9d2cd88 + 3a09636 commit f6271f2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ create table sequencing.workspace (
on delete set null
);


comment on table sequencing.workspace is e''
'A container for multiple sequences.';
comment on column sequencing.workspace.name is e''
Expand All @@ -46,7 +47,7 @@ alter table sequencing.user_sequence
add column workspace_id integer,

add foreign key (workspace_id)
references sequencing.parcel (id)
references sequencing.workspace (id)
on delete cascade;

comment on column sequencing.user_sequence.workspace_id is e''
Expand Down

0 comments on commit f6271f2

Please sign in to comment.