]> git.openstreetmap.org Git - rails.git/blob - db/migrate/012_create_maps.rb
c44068a2002e4a2fd22b7e1752829fa280a4a2a9
[rails.git] / db / migrate / 012_create_maps.rb
1 class CreateMaps < ActiveRecord::Migration
2   def self.up
3     create_table :maps do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :maps
10   end
11 end