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: 58e50b2ee7482a6819b3d1268fc292bcee81a27c (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 # rubocop:disable Migration/AddColumnsToWideTables
  end
end