2017-04-13 00:04:26 -04:00
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddPreferredLanguageToUsers < ActiveRecord::Migration[4.2]
|
2017-04-13 00:04:26 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2017-04-20 00:19:24 -04:00
|
|
|
def up
|
2017-05-03 00:36:36 -04:00
|
|
|
add_column :users, :preferred_language, :string
|
2017-04-13 00:04:26 -04:00
|
|
|
end
|
2017-04-20 00:19:24 -04:00
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :users, :preferred_language
|
|
|
|
end
|
2017-04-13 00:04:26 -04:00
|
|
|
end
|