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

20180228172924_add_include_private_contributions_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7921d3a14b63ba31c0b37f6bd8530209bbd0d752 (plain)
1
2
3
4
5
6
7
class AddIncludePrivateContributionsToUsers < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :users, :include_private_contributions, :boolean
  end
end