]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/013_create_old_way_tags.rb
more way bits
[rails.git] / db / migrate / 013_create_old_way_tags.rb
diff --git a/db/migrate/013_create_old_way_tags.rb b/db/migrate/013_create_old_way_tags.rb
new file mode 100644 (file)
index 0000000..97f0d76
--- /dev/null
@@ -0,0 +1,11 @@
+class CreateOldWayTags < ActiveRecord::Migration
+  def self.up
+    create_table :old_way_tags do |t|
+      # t.column :name, :string
+    end
+  end
+
+  def self.down
+    drop_table :old_way_tags
+  end
+end