oldhaven/db/migrate/20110630035132_add_lang_to_user.rb
2011-06-30 09:12:52 +04:00

10 lines
163 B
Ruby

class AddLangToUser < ActiveRecord::Migration
def self.up
add_column :users, :lang, :string
end
def self.down
remove_column :users, :lang
end
end