From 6f81468cb7959404f86bc906fad5b60486f35851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Thu, 23 Oct 2014 09:03:46 +0200 Subject: [PATCH] issue #18 - updated the inital db --- unleash-server/migrations/sql/001-initial-schema.up.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/unleash-server/migrations/sql/001-initial-schema.up.sql b/unleash-server/migrations/sql/001-initial-schema.up.sql index 7af9856800..ac22f75810 100644 --- a/unleash-server/migrations/sql/001-initial-schema.up.sql +++ b/unleash-server/migrations/sql/001-initial-schema.up.sql @@ -7,12 +7,19 @@ CREATE TABLE strategies ( CREATE TABLE features ( created_at timestamp default now(), name varchar(255) PRIMARY KEY NOT NULL, + enabled integer default 0, strategy_name varchar(255) references strategies(name), parameters json ); CREATE TABLE events ( + id serial primary key, created_at timestamp default now(), type varchar(255) NOT NULL, data json ); + +GRANT ALL ON TABLE events TO unleash_user; +GRANT ALL ON TABLE features TO unleash_user; +GRANT ALL ON TABLE strategies TO unleash_user; +GRANT USAGE, SELECT ON SEQUENCE events_id_seq TO unleash_user;