added map migration file to add columns

This commit is contained in:
Connor Turland 2012-10-26 06:34:16 -04:00
parent 81851df633
commit 73f18ce340

View file

@ -0,0 +1,8 @@
class AddAllToMap < ActiveRecord::Migration
def self.up
add_column :maps, :name, :text
add_column :maps, :desc, :text
add_column :maps, :permission, :text
add_column :maps, :user_id, :integer
end
end