openstreetmap-website/db/migrate/004_create_nodes.rb
2006-07-29 10:09:52 +00:00

11 lines
184 B
Ruby

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