17170: Add interactive_session_started flag to containers.
[arvados.git] / services / api / db / structure.sql
index 249ec67ac315f17b571f88c14928a6b663ea0390..14eca609eb0e35c91215a2d70e5af898d90168d4 100644 (file)
@@ -522,7 +522,8 @@ CREATE TABLE public.containers (
     runtime_auth_scopes jsonb,
     runtime_token text,
     lock_count integer DEFAULT 0 NOT NULL,
-    gateway_address character varying
+    gateway_address character varying,
+    interactive_session_started boolean DEFAULT false NOT NULL
 );
 
 
@@ -3189,6 +3190,7 @@ INSERT INTO "schema_migrations" (version) VALUES
 ('20201103170213'),
 ('20201105190435'),
 ('20201202174753'),
-('20210108033940');
+('20210108033940'),
+('20210126183521');