mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
10 lines
203 B
Ruby
10 lines
203 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddNamespaceIdToIssueAssignees < Gitlab::Database::Migration[2.2]
|
|
milestone '17.10'
|
|
|
|
def change
|
|
add_column :issue_assignees, :namespace_id, :bigint
|
|
end
|
|
end
|