Merge branch '19269-all-users-writable'
authorTom Clegg <tom@curii.com>
Thu, 25 Aug 2022 19:50:14 +0000 (15:50 -0400)
committerTom Clegg <tom@curii.com>
Thu, 25 Aug 2022 19:50:14 +0000 (15:50 -0400)
fixes #19269

Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

1  2 
services/api/db/structure.sql

index 42fb8b3aacb7a11a8183e7440ab6d2a7702a233c,525300833e7bf55069687eee5fe14a0ad3b6dd4f..825d5c72b0f0d4ef694f65dd61c41f31cbcd3a88
@@@ -254,8 -254,6 +254,6 @@@ $$
  
  SET default_tablespace = '';
  
- SET default_with_oids = false;
  --
  -- Name: api_client_authorizations; Type: TABLE; Schema: public; Owner: -
  --
@@@ -481,8 -479,7 +479,8 @@@ CREATE TABLE public.container_requests 
      secret_mounts jsonb DEFAULT '{}'::jsonb,
      runtime_token text,
      output_storage_classes jsonb DEFAULT '["default"]'::jsonb,
 -    output_properties jsonb DEFAULT '{}'::jsonb
 +    output_properties jsonb DEFAULT '{}'::jsonb,
 +    cumulative_cost double precision DEFAULT 0.0 NOT NULL
  );
  
  
@@@ -546,9 -543,7 +544,9 @@@ CREATE TABLE public.containers 
      gateway_address character varying,
      interactive_session_started boolean DEFAULT false NOT NULL,
      output_storage_classes jsonb DEFAULT '["default"]'::jsonb,
 -    output_properties jsonb DEFAULT '{}'::jsonb
 +    output_properties jsonb DEFAULT '{}'::jsonb,
 +    cost double precision DEFAULT 0.0 NOT NULL,
 +    subrequests_cost double precision DEFAULT 0.0 NOT NULL
  );
  
  
@@@ -3186,6 -3181,6 +3184,6 @@@ INSERT INTO "schema_migrations" (versio
  ('20220303204419'),
  ('20220401153101'),
  ('20220505112900'),
 -
+ ('20220726034131');
 +('20220804133317');