X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6fb70ef1e1398c30137580c8417e98693dfbfc1d..c3734153c799a79136683093c21f64a7f1fa4e80:/services/api/db/structure.sql diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index bda4e5de87..5f80fb2c70 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -1069,7 +1069,7 @@ CREATE TABLE workflows ( modified_by_user_uuid character varying(255), name character varying(255), description text, - workflow text, + definition text, updated_at timestamp without time zone NOT NULL ); @@ -2410,7 +2410,7 @@ CREATE INDEX virtual_machines_search_index ON virtual_machines USING btree (uuid -- Name: workflows_full_text_search_idx; Type: INDEX; Schema: public; Owner: -; Tablespace: -- -CREATE INDEX workflows_full_text_search_idx ON workflows USING gin (to_tsvector('english'::regconfig, (((((((((((((' '::text || (COALESCE(uuid, ''::character varying))::text) || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(description, ''::text)) || ' '::text) || COALESCE(workflow, ''::text)))); +CREATE INDEX workflows_full_text_search_idx ON workflows USING gin (to_tsvector('english'::regconfig, (((((((((((((' '::text || (COALESCE(uuid, ''::character varying))::text) || ' '::text) || (COALESCE(owner_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_client_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(modified_by_user_uuid, ''::character varying))::text) || ' '::text) || (COALESCE(name, ''::character varying))::text) || ' '::text) || COALESCE(description, ''::text)) || ' '::text) || COALESCE(definition, ''::text)))); -- @@ -2680,10 +2680,12 @@ INSERT INTO schema_migrations (version) VALUES ('20160506175108'); INSERT INTO schema_migrations (version) VALUES ('20160509143250'); -INSERT INTO schema_migrations (version) VALUES ('20160808151459'); - INSERT INTO schema_migrations (version) VALUES ('20160808151559'); INSERT INTO schema_migrations (version) VALUES ('20160819195557'); -INSERT INTO schema_migrations (version) VALUES ('20160819195725'); \ No newline at end of file +INSERT INTO schema_migrations (version) VALUES ('20160819195725'); + +INSERT INTO schema_migrations (version) VALUES ('20160901210110'); + +INSERT INTO schema_migrations (version) VALUES ('20160909181442'); \ No newline at end of file