mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	issue #18 - updated the inital db
This commit is contained in:
		
							parent
							
								
									4c9702d041
								
							
						
					
					
						commit
						2ac5af4051
					
				@ -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