debian-mirror-gitlab/db/migrate/20220907124320_add_internal_to_notes.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
211 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# 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