X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bf15373590e21dafd696fa0c10906eb653610d1d..df91e9651a0075415a257be97f0a92be061141d3:/services/api/db/schema.rb diff --git a/services/api/db/schema.rb b/services/api/db/schema.rb index 034ee35e5f..256fa3977e 100644 --- a/services/api/db/schema.rb +++ b/services/api/db/schema.rb @@ -11,7 +11,9 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20140423133559) do +ActiveRecord::Schema.define(:version => 20140627210837) do + + create_table "api_client_authorizations", :force => true do |t| t.string "api_token", :null => false @@ -75,7 +77,6 @@ ActiveRecord::Schema.define(:version => 20140423133559) do t.string "modified_by_user_uuid" t.datetime "modified_at" t.string "portable_data_hash" - t.string "name" t.integer "redundancy" t.string "redundancy_confirmed_by_client_uuid" t.datetime "redundancy_confirmed_at" @@ -194,6 +195,8 @@ ActiveRecord::Schema.define(:version => 20140423133559) do t.boolean "nondeterministic" t.string "repository" t.boolean "output_is_persistent", :default => false, :null => false + t.string "supplied_script_version" + t.string "docker_image_locator" end add_index "jobs", ["created_at"], :name => "index_jobs_on_created_at" @@ -223,17 +226,30 @@ ActiveRecord::Schema.define(:version => 20140423133559) do t.datetime "last_ping_at" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false - t.string "service_host" - t.integer "service_port" - t.boolean "service_ssl_flag" + t.string "keep_service_uuid" end add_index "keep_disks", ["filesystem_uuid"], :name => "index_keep_disks_on_filesystem_uuid" add_index "keep_disks", ["last_ping_at"], :name => "index_keep_disks_on_last_ping_at" add_index "keep_disks", ["node_uuid"], :name => "index_keep_disks_on_node_uuid" - add_index "keep_disks", ["service_host", "service_port", "last_ping_at"], :name => "keep_disks_service_host_port_ping_at_index" add_index "keep_disks", ["uuid"], :name => "index_keep_disks_on_uuid", :unique => true + create_table "keep_services", :force => true do |t| + t.string "uuid", :null => false + t.string "owner_uuid", :null => false + t.string "modified_by_client_uuid" + t.string "modified_by_user_uuid" + t.datetime "modified_at" + t.string "service_host" + t.integer "service_port" + t.boolean "service_ssl_flag" + t.string "service_type" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + + add_index "keep_services", ["uuid"], :name => "index_keep_services_on_uuid", :unique => true + create_table "links", :force => true do |t| t.string "uuid" t.string "owner_uuid" @@ -252,6 +268,7 @@ ActiveRecord::Schema.define(:version => 20140423133559) do add_index "links", ["created_at"], :name => "index_links_on_created_at" add_index "links", ["head_uuid"], :name => "index_links_on_head_uuid" add_index "links", ["modified_at"], :name => "index_links_on_modified_at" + add_index "links", ["tail_uuid", "name"], :name => "links_tail_name_unique_if_link_class_name", :unique => true, :where => "((link_class)::text = 'name'::text)" add_index "links", ["tail_uuid"], :name => "index_links_on_tail_uuid" add_index "links", ["uuid"], :name => "index_links_on_uuid", :unique => true @@ -268,6 +285,7 @@ ActiveRecord::Schema.define(:version => 20140423133559) do t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.datetime "modified_at" + t.string "object_owner_uuid" end add_index "logs", ["created_at"], :name => "index_logs_on_created_at" @@ -304,16 +322,14 @@ ActiveRecord::Schema.define(:version => 20140423133559) do create_table "pipeline_instances", :force => true do |t| t.string "uuid" t.string "owner_uuid" - t.datetime "created_at", :null => false + t.datetime "created_at", :null => false t.string "modified_by_client_uuid" t.string "modified_by_user_uuid" t.datetime "modified_at" t.string "pipeline_template_uuid" t.string "name" t.text "components" - t.boolean "success" - t.boolean "active", :default => false - t.datetime "updated_at", :null => false + t.datetime "updated_at", :null => false t.text "properties" t.string "state" t.text "components_summary" @@ -333,6 +349,7 @@ ActiveRecord::Schema.define(:version => 20140423133559) do t.string "name" t.text "components" t.datetime "updated_at", :null => false + t.text "description" end add_index "pipeline_templates", ["created_at"], :name => "index_pipeline_templates_on_created_at" @@ -422,4 +439,5 @@ ActiveRecord::Schema.define(:version => 20140423133559) do add_index "virtual_machines", ["hostname"], :name => "index_virtual_machines_on_hostname" add_index "virtual_machines", ["uuid"], :name => "index_virtual_machines_on_uuid", :unique => true + end