Fix merge conflict.
[arvados.git] / services / api / db / structure.sql
index 525300833e7bf55069687eee5fe14a0ad3b6dd4f..45559757a7c1352ec1617e7dee1ba2e91d409a57 100644 (file)
@@ -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
 );
 
 
@@ -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
 );
 
 
@@ -3181,6 +3184,6 @@ INSERT INTO "schema_migrations" (version) VALUES
 ('20220303204419'),
 ('20220401153101'),
 ('20220505112900'),
-('20220726034131');
-
+('20220726034131'),
+('20220804133317');