Rails5 MySQL fix rename_column as part of cleanup_concurrent_column_type_change

This commit is contained in:
Jasper Maes 2018-07-09 23:07:57 +02:00
parent 3edda4c257
commit 7ce51548ac
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
title: Rails5 MySQL fix rename_column as part of cleanup_concurrent_column_type_change
merge_request: 20514
author: Jasper Maes
type: fixed

View File

@ -29,6 +29,11 @@ module ActiveRecord
def datetime_with_timezone(column_name, **options)
column(column_name, :datetime_with_timezone, options)
end
# Disable timestamp alias to datetime
def aliased_types(name, fallback)
fallback
end
end
end
end