X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/44480d99e71e1868f61024035d7d58acd69eac50..0df7a1c38affbc50a9c7d8834f9822e398860d91:/services/api/db/schema.rb diff --git a/services/api/db/schema.rb b/services/api/db/schema.rb index 59963de97f..c4cef7c6fb 100644 --- a/services/api/db/schema.rb +++ b/services/api/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20140421140924) do +ActiveRecord::Schema.define(:version => 20140423133559) do create_table "api_client_authorizations", :force => true do |t| t.string "api_token", :null => false @@ -64,13 +64,13 @@ ActiveRecord::Schema.define(:version => 20140421140924) 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| t.string "locator" 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" @@ -80,7 +80,7 @@ ActiveRecord::Schema.define(:version => 20140421140924) do t.string "redundancy_confirmed_by_client_uuid" t.datetime "redundancy_confirmed_at" t.integer "redundancy_confirmed_as" - t.datetime "updated_at" + t.datetime "updated_at", :null => false t.string "uuid" t.text "manifest_text" end @@ -104,8 +104,8 @@ ActiveRecord::Schema.define(:version => 20140421140924) do t.string "repository_name" t.string "sha1" t.string "message" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "commits", ["repository_name", "sha1"], :name => "index_commits_on_repository_name_and_sha1", :unique => true @@ -135,8 +135,8 @@ ActiveRecord::Schema.define(:version => 20140421140924) do t.string "modified_by_user_uuid" t.datetime "modified_at" 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 "humans", ["uuid"], :name => "index_humans_on_uuid", :unique => true @@ -184,8 +184,8 @@ ActiveRecord::Schema.define(:version => 20140421140924) 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" @@ -237,7 +237,7 @@ ActiveRecord::Schema.define(:version => 20140421140924) do create_table "links", :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" @@ -246,7 +246,7 @@ ActiveRecord::Schema.define(:version => 20140421140924) do t.string "name" t.string "head_uuid" t.text "properties" - t.datetime "updated_at" + t.datetime "updated_at", :null => false end add_index "links", ["created_at"], :name => "index_links_on_created_at" @@ -268,6 +268,7 @@ ActiveRecord::Schema.define(:version => 20140421140924) 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,7 +305,7 @@ ActiveRecord::Schema.define(:version => 20140421140924) do create_table "pipeline_instances", :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" @@ -313,8 +314,10 @@ ActiveRecord::Schema.define(:version => 20140421140924) do t.text "components" t.boolean "success" t.boolean "active", :default => false - t.datetime "updated_at" + t.datetime "updated_at", :null => false t.text "properties" + t.string "state" + t.text "components_summary" end add_index "pipeline_instances", ["created_at"], :name => "index_pipeline_instances_on_created_at"