Shared Pools

This commit is contained in:
Joe Abbate 2022-09-25 00:58:29 -04:00
parent 50855e3712
commit dff517d822
No known key found for this signature in database
GPG key ID: 7F1CC23828058430
12 changed files with 349 additions and 16 deletions

View file

@ -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
--