mirror of
https://github.com/ComputerScienceHouse/proxstar.git
synced 2025-03-09 15:40:09 +00:00
Shared Pools
This commit is contained in:
parent
50855e3712
commit
dff517d822
12 changed files with 349 additions and 16 deletions
12
HACKING/proxstar-postgres/schema/large.sql
generated
12
HACKING/proxstar-postgres/schema/large.sql
generated
|
@ -266,6 +266,18 @@ ALTER TABLE ONLY public.vm_expiration
|
|||
ADD CONSTRAINT vm_expiration_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: allowed_users; Type: TABLE; Schema: public; Owner: proxstar
|
||||
--
|
||||
|
||||
CREATE TABLE public.shared_pools (
|
||||
name VARCHAR(32) PRIMARY KEY,
|
||||
members VARCHAR(32)[]
|
||||
);
|
||||
|
||||
|
||||
ALTER TABLE public.shared_pools OWNER TO proxstar;
|
||||
|
||||
--
|
||||
-- Name: DATABASE proxstar; Type: ACL; Schema: -; Owner: postgres
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue