Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151005150751_add_layout_option_for_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e68606969f29f3dbe6523f90485b0d397c2e554 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddLayoutOptionForUsers < ActiveRecord::Migration
  def change
    add_column :users, :layout, :integer, default: 0
  end
end