add /collections html view, dry up CollectionsController
[arvados.git] / db / schema.rb
index 644a5a7591a9f34c175b106a0590acf7cd39895d..aa21ec4c6c7f2a621aad78e8ca29a7b28e5895d4 100644 (file)
@@ -11,7 +11,7 @@
 #
 # It's strongly recommended to check this file into your version control system.
 
-ActiveRecord::Schema.define(:version => 20130109175700) do
+ActiveRecord::Schema.define(:version => 20130113214204) do
 
   create_table "collections", :force => true do |t|
     t.string   "locator"
@@ -31,6 +31,8 @@ ActiveRecord::Schema.define(:version => 20130109175700) do
     t.string   "uuid"
   end
 
+  add_index "collections", ["uuid"], :name => "index_collections_on_uuid", :unique => true
+
   create_table "metadata", :force => true do |t|
     t.string   "uuid"
     t.string   "created_by_client"
@@ -50,6 +52,8 @@ ActiveRecord::Schema.define(:version => 20130109175700) do
     t.datetime "updated_at"
   end
 
+  add_index "metadata", ["uuid"], :name => "index_metadata_on_uuid", :unique => true
+
   create_table "nodes", :force => true do |t|
     t.string   "uuid"
     t.string   "created_by_client"
@@ -72,6 +76,24 @@ ActiveRecord::Schema.define(:version => 20130109175700) do
   add_index "nodes", ["slot_number"], :name => "index_nodes_on_slot_number", :unique => true
   add_index "nodes", ["uuid"], :name => "index_nodes_on_uuid", :unique => true
 
+  create_table "pipeline_invocations", :force => true do |t|
+    t.string   "uuid"
+    t.string   "created_by_client"
+    t.string   "created_by_user"
+    t.datetime "created_at"
+    t.string   "modified_by_client"
+    t.string   "modified_by_user"
+    t.datetime "modified_at"
+    t.string   "pipeline_uuid"
+    t.string   "name"
+    t.text     "components"
+    t.boolean  "success"
+    t.boolean  "active",             :default => false
+    t.datetime "updated_at"
+  end
+
+  add_index "pipeline_invocations", ["uuid"], :name => "index_pipeline_invocations_on_uuid", :unique => true
+
   create_table "pipelines", :force => true do |t|
     t.string   "uuid"
     t.string   "created_by_client"