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

20150713160110_add_project_view_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fea63576187e54a0736baf4e6ef91b95a7c1050b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectViewToUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :project_view, :integer, default: 0
  end
end