openstreetmap-website/db/migrate/012_create_apis.rb
2006-11-17 19:56:54 +00:00

11 lines
181 B
Ruby

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