refactoring #19: add comment to article relation

This commit is contained in:
2019-07-30 16:10:07 +02:00
parent fe063d978e
commit 358c3edb0e
2 changed files with 4 additions and 2 deletions

View File

@@ -176,6 +176,7 @@ create table article_relations
target_id uuid references article check ( source_id != target_id ),
created_at timestamptz default now(),
created_by_id uuid not null references citizen (id),
comment text null,
primary key (source_id, target_id)
);