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 z.id
from (select *, row_number() over () rn from citizen) z; 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 select
z.id, z.id,
w.id w.id

View File

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