X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e346e5d3bd09f4b9fe66538a825cf866faeb308b..64b24877bdb4b35938e8b691463b78073a4fd31d:/services/api/db/schema.rb diff --git a/services/api/db/schema.rb b/services/api/db/schema.rb index c8d71e5196..8ab6f5faf7 100644 --- a/services/api/db/schema.rb +++ b/services/api/db/schema.rb @@ -11,19 +11,20 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20130708185153) do +ActiveRecord::Schema.define(:version => 20140324024606) do create_table "api_client_authorizations", :force => true do |t| - t.string "api_token", :null => false - t.integer "api_client_id", :null => false - t.integer "user_id", :null => false + t.string "api_token", :null => false + t.integer "api_client_id", :null => false + t.integer "user_id", :null => false t.string "created_by_ip_address" t.string "last_used_by_ip_address" t.datetime "last_used_at" t.datetime "expires_at" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "default_owner_uuid" + t.text "scopes", :default => "---\n- all\n", :null => false end add_index "api_client_authorizations", ["api_client_id"], :name => "index_api_client_authorizations_on_api_client_id" @@ -39,8 +40,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.datetime "modified_at" t.string "name" t.string "url_prefix" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.boolean "is_trusted", :default => false end @@ -59,8 +60,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.string "authorized_user_uuid" t.text "public_key" t.datetime "expires_at" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + 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" @@ -93,8 +94,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.string "descendant", :null => false t.string "ancestor", :null => false t.boolean "is", :default => false, :null => false - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "commit_ancestors", ["descendant", "ancestor"], :name => "index_commit_ancestors_on_descendant_and_ancestor", :unique => true @@ -112,13 +113,13 @@ ActiveRecord::Schema.define(:version => 20130708185153) do create_table "groups", :force => true do |t| t.string "uuid" t.string "owner_uuid" - t.datetime "created_at" + t.datetime "created_at", :null => false t.string "modified_by_client_uuid" t.string "modified_by_user_uuid" t.datetime "modified_at" t.string "name" t.text "description" - t.datetime "updated_at" + t.datetime "updated_at", :null => false end add_index "groups", ["created_at"], :name => "index_groups_on_created_at" @@ -150,8 +151,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.text "output" t.float "progress" t.boolean "success" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "created_by_job_task_uuid" t.integer "qsequence", :limit => 8 end @@ -181,13 +182,16 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.boolean "running" t.boolean "success" t.string "output" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.string "priority" t.string "is_locked_by_uuid" t.string "log" t.text "tasks_summary" - t.text "resource_limits" + t.text "runtime_constraints" + t.boolean "nondeterministic" + t.string "repository" + t.boolean "output_is_persistent", :default => false, :null => false end add_index "jobs", ["created_at"], :name => "index_jobs_on_created_at" @@ -215,8 +219,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.datetime "last_read_at" t.datetime "last_write_at" t.datetime "last_ping_at" - t.datetime "created_at" - t.datetime "updated_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" @@ -264,8 +268,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.string "event_type" t.text "summary" t.text "info" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.datetime "modified_at" end @@ -281,7 +285,7 @@ ActiveRecord::Schema.define(:version => 20130708185153) do create_table "nodes", :force => true do |t| t.string "uuid" t.string "owner_uuid" - t.datetime "created_at" + t.datetime "created_at", :null => false t.string "modified_by_client_uuid" t.string "modified_by_user_uuid" t.datetime "modified_at" @@ -292,7 +296,7 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.datetime "first_ping_at" t.datetime "last_ping_at" t.text "info" - t.datetime "updated_at" + t.datetime "updated_at", :null => false end add_index "nodes", ["created_at"], :name => "index_nodes_on_created_at" @@ -324,13 +328,13 @@ ActiveRecord::Schema.define(:version => 20130708185153) do create_table "pipeline_templates", :force => true do |t| t.string "uuid" t.string "owner_uuid" - t.datetime "created_at" + t.datetime "created_at", :null => false t.string "modified_by_client_uuid" t.string "modified_by_user_uuid" t.datetime "modified_at" t.string "name" t.text "components" - t.datetime "updated_at" + t.datetime "updated_at", :null => false end add_index "pipeline_templates", ["created_at"], :name => "index_pipeline_templates_on_created_at" @@ -346,8 +350,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.string "name" t.string "fetch_url" t.string "push_url" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "repositories", ["name"], :name => "index_repositories_on_name", :unique => true @@ -356,12 +360,12 @@ ActiveRecord::Schema.define(:version => 20130708185153) do create_table "specimens", :force => true do |t| t.string "uuid" t.string "owner_uuid" - t.datetime "created_at" + t.datetime "created_at", :null => false t.string "modified_by_client_uuid" t.string "modified_by_user_uuid" t.datetime "modified_at" t.string "material" - t.datetime "updated_at" + t.datetime "updated_at", :null => false t.text "properties" end @@ -377,8 +381,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.datetime "modified_at" t.string "name" t.text "properties" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "traits", ["name"], :name => "index_traits_on_name" @@ -387,7 +391,7 @@ ActiveRecord::Schema.define(:version => 20130708185153) do create_table "users", :force => true do |t| t.string "uuid" t.string "owner_uuid" - t.datetime "created_at" + t.datetime "created_at", :null => false t.string "modified_by_client_uuid" t.string "modified_by_user_uuid" t.datetime "modified_at" @@ -397,7 +401,7 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.string "identity_url" t.boolean "is_admin" t.text "prefs" - t.datetime "updated_at" + t.datetime "updated_at", :null => false t.string "default_owner_uuid" t.boolean "is_active", :default => false end @@ -413,8 +417,8 @@ ActiveRecord::Schema.define(:version => 20130708185153) do t.string "modified_by_user_uuid" t.datetime "modified_at" t.string "hostname" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "virtual_machines", ["hostname"], :name => "index_virtual_machines_on_hostname"