]> git.openstreetmap.org Git - rails.git/blob - db/migrate/009_create_old_ways.rb
Support getting a way, and all the segments and nodes it depends on, via /way/:id...
[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