Files
gitlabhq/db/migrate/20240605090452_add_project_id_to_draft_notes.rb

10 lines
190 B
Ruby

# frozen_string_literal: true
class AddProjectIdToDraftNotes < Gitlab::Database::Migration[2.2]
milestone '17.1'
def change
add_column :draft_notes, :project_id, :bigint
end
end