X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4eb42fd91dc5e50840e0d3db5d5201561602a508..3ba5aa15ea0156a4fce63dcb43b7f972b4c760df:/services/api/db/schema.rb diff --git a/services/api/db/schema.rb b/services/api/db/schema.rb index 88b29e5b5a..22a019424f 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 => 20140423132913) do +ActiveRecord::Schema.define(:version => 20140519205916) do + + create_table "api_client_authorizations", :force => true do |t| t.string "api_token", :null => false @@ -64,7 +66,7 @@ ActiveRecord::Schema.define(:version => 20140423132913) do t.datetime "updated_at", :null => false end - add_index "authorized_keys", ["authorized_user_uuid", "expires_at"], :name => "index_authorized_keys_on_authorized_user_uuid_and_expires_at" + add_index "authorized_keys", ["authorized_user_uuid", "expires_at"], :name => "index_authkeys_on_user_and_expires_at" add_index "authorized_keys", ["uuid"], :name => "index_authorized_keys_on_uuid", :unique => true create_table "collections", :force => true do |t| @@ -223,17 +225,30 @@ ActiveRecord::Schema.define(:version => 20140423132913) 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 +267,7 @@ ActiveRecord::Schema.define(:version => 20140423132913) 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 @@ -423,4 +439,5 @@ ActiveRecord::Schema.define(:version => 20140423132913) 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