class ActiveRecord::Migration::Compatibility::V5_2
def add_timestamps(table_name, **options)
def add_timestamps(table_name, **options) options[:precision] ||= nil super end
def command_recorder
def command_recorder recorder = super class << recorder prepend CommandRecorder end recorder end
def compatible_table_definition(t)
def compatible_table_definition(t) class << t prepend TableDefinition end super end