]> git.openstreetmap.org Git - rails.git/blob - db/migrate/012_create_apis.rb
added a marker to show a location on the map
[rails.git] / db / migrate / 012_create_apis.rb
1 class CreateApis < ActiveRecord::Migration
2   def self.up
3     create_table :apis do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :apis
10   end
11 end