Merge branch '3342-pipeline-output-current-project' closes #3342
[arvados.git] / services / api / db / structure.sql
index a71bf8ac17cc89b19e98d91a1c594ee254d0378e..9bcb3fbc6565c1d0e8e3778cc7ad7516a5acec9c 100644 (file)
@@ -168,8 +168,8 @@ CREATE TABLE collections (
     manifest_text text,
     name character varying(255),
     description character varying(255),
-    properties character varying(255),
-    expire_time date
+    properties text,
+    expires_at date
 );
 
 
@@ -271,7 +271,7 @@ CREATE TABLE groups (
     modified_by_client_uuid character varying(255),
     modified_by_user_uuid character varying(255),
     modified_at timestamp without time zone,
-    name character varying(255),
+    name character varying(255) NOT NULL,
     description text,
     updated_at timestamp without time zone NOT NULL,
     group_class character varying(255)
@@ -427,7 +427,6 @@ CREATE TABLE jobs (
     runtime_constraints text,
     nondeterministic boolean,
     repository character varying(255),
-    output_is_persistent boolean DEFAULT false NOT NULL,
     supplied_script_version character varying(255),
     docker_image_locator character varying(255),
     name character varying(255),
@@ -2022,4 +2021,8 @@ INSERT INTO schema_migrations (version) VALUES ('20140811184643');
 
 INSERT INTO schema_migrations (version) VALUES ('20140815171049');
 
-INSERT INTO schema_migrations (version) VALUES ('20140817035914');
\ No newline at end of file
+INSERT INTO schema_migrations (version) VALUES ('20140817035914');
+
+INSERT INTO schema_migrations (version) VALUES ('20140818125735');
+
+INSERT INTO schema_migrations (version) VALUES ('20140826180337');
\ No newline at end of file