2022-06-22 21:09:04 +00:00
|
|
|
class RemoveSpecialCharactersFromInboxName < ActiveRecord::Migration[6.1]
|
2022-06-23 15:06:46 +00:00
|
|
|
# This PR tried to remove special characters from the inbox name
|
|
|
|
# It broke in the Chatwoot Cloud as there were inboxes with valid special characters
|
|
|
|
# We had to push a temporary fix to continue the deployment by removing the logic
|
|
|
|
# from this migration. Keeping this migration here to remove inconsistency.
|
2022-06-22 21:09:04 +00:00
|
|
|
|
2022-06-23 15:06:46 +00:00
|
|
|
def change; end
|
2022-06-22 21:09:04 +00:00
|
|
|
end
|