debian-mirror-gitlab/db/migrate/20220907124320_add_internal_to_notes.rb
2022-10-11 01:57:18 +05:30

9 lines
211 B
Ruby

# 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