refactoring #19: rename column workgroup to workgroup_id

This commit is contained in:
2019-07-30 09:53:33 +02:00
parent 6eb3991a52
commit 6385e010a2
2 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ begin
z.id
from (select *, row_number() over () rn from citizen) z;
insert into citizen_in_workgroup (citizen_id, workgroup)
insert into citizen_in_workgroup (citizen_id, workgroup_id)
select
z.id,
w.id

View File

@@ -37,10 +37,10 @@ create table workgroup
create table citizen_in_workgroup
(
citizen_id uuid not null references citizen (id),
workgroup uuid not null references workgroup (id),
created_at timestamptz default now() not null,
primary key (citizen_id, workgroup)
citizen_id uuid not null references citizen (id),
workgroup_id uuid not null references workgroup (id),
created_at timestamptz default now() not null,
primary key (citizen_id, workgroup_id)
);
create table moderator