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: 66cba21320aec0f038a10a58593cde8dfe62e5c8 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddLayoutOptionForUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :layout, :integer, default: 0
  end
end