openstreetmap-website/db/migrate/005_create_old_nodes.rb
2006-08-19 08:11:33 +00:00

11 lines
195 B
Ruby

class CreateOldNodes < ActiveRecord::Migration
def self.up
create_table :old_nodes do |t|
# t.column :name, :string
end
end
def self.down
drop_table :old_nodes
end
end