refactoring #19: rename column workgroup to workgroup_id
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -38,9 +38,9 @@ create table workgroup
|
||||
create table citizen_in_workgroup
|
||||
(
|
||||
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,
|
||||
primary key (citizen_id, workgroup)
|
||||
primary key (citizen_id, workgroup_id)
|
||||
);
|
||||
|
||||
create table moderator
|
||||
|
||||
Reference in New Issue
Block a user