2020-03-09 13:42:32 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddServiceDeskProjectKey < ActiveRecord::Migration[5.2]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
# rubocop:disable Migration/PreventStrings
|
2020-03-09 13:42:32 +05:30
|
|
|
def change
|
|
|
|
add_column :service_desk_settings, :project_key, :string, limit: 255
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
# rubocop:enable Migration/PreventStrings
|
2020-03-09 13:42:32 +05:30
|
|
|
end
|