1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

issue #18 - updated the inital db

This commit is contained in:
Ivar Conradi Østhus 2014-10-23 09:03:46 +02:00
parent 22d253a0db
commit 6f81468cb7

View File

@ -7,12 +7,19 @@ CREATE TABLE strategies (
CREATE TABLE features ( CREATE TABLE features (
created_at timestamp default now(), created_at timestamp default now(),
name varchar(255) PRIMARY KEY NOT NULL, name varchar(255) PRIMARY KEY NOT NULL,
enabled integer default 0,
strategy_name varchar(255) references strategies(name), strategy_name varchar(255) references strategies(name),
parameters json parameters json
); );
CREATE TABLE events ( CREATE TABLE events (
id serial primary key,
created_at timestamp default now(), created_at timestamp default now(),
type varchar(255) NOT NULL, type varchar(255) NOT NULL,
data json 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;