]> git.openstreetmap.org Git - rails.git/blob - db/migrate/009_create_old_ways.rb
cleanup
[rails.git] / db / migrate / 009_create_old_ways.rb
1 class CreateOldWays < ActiveRecord::Migration
2   def self.up
3     create_table :old_ways do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :old_ways
10   end
11 end