2020-02-05 19:09:12 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddServiceDeskProjectKey < ActiveRecord::Migration[5.2]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
# rubocop:disable Migration/PreventStrings
|
2020-02-05 19:09:12 -05:00
|
|
|
def change
|
|
|
|
add_column :service_desk_settings, :project_key, :string, limit: 255
|
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
# rubocop:enable Migration/PreventStrings
|
2020-02-05 19:09:12 -05:00
|
|
|
end
|