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

20170316061730_readd_notified_of_own_activity_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 524eb2557ce1b58354a5dffbebc453ad694f0c41 (plain)
1
2
3
4
5
6
7
8
9
10
class ReaddNotifiedOfOwnActivityToUsers < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers
  disable_ddl_transaction!

  DOWNTIME = false

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