moved api server code into new directory structure
[arvados.git] / db / migrate / 20130105203021_create_metadata.rb
diff --git a/db/migrate/20130105203021_create_metadata.rb b/db/migrate/20130105203021_create_metadata.rb
deleted file mode 100644 (file)
index 8e0f01b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-class CreateMetadata < ActiveRecord::Migration
-  def change
-    create_table :metadata 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 :target_uuid
-      t.string :target_kind
-      t.references :native_target, :polymorphic => true
-      t.string :metadatum_class
-      t.string :key
-      t.string :value
-      t.text :info # "unlimited length" in postgresql
-
-      t.timestamps
-    end
-  end
-end