summaryrefslogtreecommitdiff
path: root/db/migrate/20170905112933_add_resolved_by_push_to_notes.rb
blob: 1f27ea3c4673eea2bc59a7864dc055a6b3ecddf4 (plain)
1
2
3
4
5
6
7
8
9
class AddResolvedByPushToNotes < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :notes, :resolved_by_push, :boolean
  end
end