Merge branch 'master' into 2352-phased-pipeline-instance-state
[arvados.git] / services / api / db / schema.rb
index 6a032d0d19502b4e1eb351ddc310f95d552a3da4..ab39901db41aea6902ca2c08851277fac018eb67 100644 (file)
@@ -11,7 +11,7 @@
 #
 # It's strongly recommended to check this file into your version control system.
 
-ActiveRecord::Schema.define(:version => 20131007180607) do
+ActiveRecord::Schema.define(:version => 20140422011506) do
 
   create_table "api_client_authorizations", :force => true do |t|
     t.string   "api_token",                                           :null => false
@@ -21,8 +21,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) do
     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
@@ -40,8 +40,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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
 
@@ -60,8 +60,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -94,8 +94,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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
@@ -113,13 +113,13 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -151,8 +151,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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
@@ -189,6 +189,9 @@ ActiveRecord::Schema.define(:version => 20131007180607) do
     t.string   "log"
     t.text     "tasks_summary"
     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"
@@ -216,8 +219,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -237,20 +240,18 @@ ActiveRecord::Schema.define(:version => 20131007180607) do
     t.string   "modified_by_user_uuid"
     t.datetime "modified_at"
     t.string   "tail_uuid"
-    t.string   "tail_kind"
     t.string   "link_class"
     t.string   "name"
     t.string   "head_uuid"
     t.text     "properties"
     t.datetime "updated_at"
     t.string   "head_kind"
+    t.string   "tail_kind"
   end
 
   add_index "links", ["created_at"], :name => "index_links_on_created_at"
-  add_index "links", ["head_kind"], :name => "index_links_on_head_kind"
   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_kind"], :name => "index_links_on_tail_kind"
   add_index "links", ["tail_uuid"], :name => "index_links_on_tail_uuid"
   add_index "links", ["uuid"], :name => "index_links_on_uuid", :unique => true
 
@@ -259,14 +260,13 @@ ActiveRecord::Schema.define(:version => 20131007180607) do
     t.string   "owner_uuid"
     t.string   "modified_by_client_uuid"
     t.string   "modified_by_user_uuid"
-    t.string   "object_kind"
     t.string   "object_uuid"
     t.datetime "event_at"
     t.string   "event_type"
     t.text     "summary"
-    t.text     "info"
-    t.datetime "created_at"
-    t.datetime "updated_at"
+    t.text     "properties"
+    t.datetime "created_at",              :null => false
+    t.datetime "updated_at",              :null => false
     t.datetime "modified_at"
   end
 
@@ -274,7 +274,6 @@ ActiveRecord::Schema.define(:version => 20131007180607) do
   add_index "logs", ["event_at"], :name => "index_logs_on_event_at"
   add_index "logs", ["event_type"], :name => "index_logs_on_event_type"
   add_index "logs", ["modified_at"], :name => "index_logs_on_modified_at"
-  add_index "logs", ["object_kind"], :name => "index_logs_on_object_kind"
   add_index "logs", ["object_uuid"], :name => "index_logs_on_object_uuid"
   add_index "logs", ["summary"], :name => "index_logs_on_summary"
   add_index "logs", ["uuid"], :name => "index_logs_on_uuid", :unique => true
@@ -282,7 +281,7 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -293,7 +292,7 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -312,10 +311,12 @@ ActiveRecord::Schema.define(:version => 20131007180607) do
     t.string   "pipeline_template_uuid"
     t.string   "name"
     t.text     "components"
-    t.boolean  "success"
-    t.boolean  "active",                  :default => false
     t.datetime "updated_at"
     t.text     "properties"
+    t.boolean  "active"
+    t.boolean  "success"
+    t.string   "state"
+    t.text     "components_summary"
   end
 
   add_index "pipeline_instances", ["created_at"], :name => "index_pipeline_instances_on_created_at"
@@ -325,13 +326,13 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -347,8 +348,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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
@@ -357,12 +358,12 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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
 
@@ -378,8 +379,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -388,7 +389,7 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"
@@ -398,7 +399,7 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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
@@ -414,8 +415,8 @@ ActiveRecord::Schema.define(:version => 20131007180607) 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"