summaryrefslogtreecommitdiff
path: root/db/migrate/20220907124320_add_internal_to_notes.rb
blob: 081914f78306159a9f3439a5f026af8b9759f049 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddInternalToNotes < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column(:notes, :internal, :boolean, default: false, null: false)
  end
end