PR for #3 #17

Merged
flecomte merged 7 commits from #3 into master 2019-07-26 14:30:44 +02:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 0f42d985c5 - Show all commits

View File

@@ -1,3 +1,6 @@
-- Stats
drop table if exists resource_view;
-- Extra resources
drop table if exists follow_article;
drop table if exists follow_constitution;

View File

@@ -264,3 +264,13 @@ create table vote_for_comment_on_constitution
foreign key (target_id) references comment_on_constitution (id),
foreign key (target_id) references citizen (id)
) inherits (vote);
-- Stats
create table resource_view
(
id uuid default uuid_generate_v4() not null primary key,
type regclass not null,
created_at timestamptz default now() not null,
created_by_id uuid null references citizen (id),
ip cidr null
);