10 lines
163 B
Ruby
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
|