]> git.openstreetmap.org Git - rails.git/blob - db/migrate/014_create_old_way_segments.rb
add tags to gpx files
[rails.git] / db / migrate / 014_create_old_way_segments.rb
1 class CreateOldWaySegments < ActiveRecord::Migration
2   def self.up
3     create_table :old_way_segments do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :old_way_segments
10   end
11 end