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: ead9b1f89774579614e0b536ef7d3e94ba8cc71e (plain)
1
2
3
4
5
class AddLayoutOptionForUsers < ActiveRecord::Migration
  def change
    add_column :users, :layout, :integer, default: 0
  end
end