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:
parent
22d253a0db
commit
6f81468cb7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user