mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
10 lines
190 B
Ruby
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
|