moved api server code into new directory structure
[arvados.git] / db / migrate / 20130109220548_create_pipeline_invocations.rb
diff --git a/db/migrate/20130109220548_create_pipeline_invocations.rb b/db/migrate/20130109220548_create_pipeline_invocations.rb
deleted file mode 100644 (file)
index 147fdad..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-class CreatePipelineInvocations < ActiveRecord::Migration
-  def up
-    create_table :pipeline_invocations 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, :null => true
-      t.boolean :active, :default => false
-
-      t.timestamps
-    end
-    add_index :pipeline_invocations, :uuid, :unique => true
-  end
-  def down
-    drop_table :pipeline_invocations
-  end
-end