moved api server code into new directory structure
[arvados.git] / db / migrate / 20130109175700_create_pipelines.rb
diff --git a/db/migrate/20130109175700_create_pipelines.rb b/db/migrate/20130109175700_create_pipelines.rb
deleted file mode 100644 (file)
index fe05886..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-class CreatePipelines < ActiveRecord::Migration
-  def up
-    create_table :pipelines 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 :name
-      t.text :components
-
-      t.timestamps
-    end
-    add_index :pipelines, :uuid, :unique => true
-  end
-  def down
-    drop_table :pipelines
-  end
-end