]> git.openstreetmap.org Git - rails.git/blob - db/migrate/013_create_old_way_tags.rb
messaging stuff and home location selection
[rails.git] / db / migrate / 013_create_old_way_tags.rb
1 class CreateOldWayTags < ActiveRecord::Migration
2   def self.up
3     create_table :old_way_tags do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :old_way_tags
10   end
11 end