Project

General

Profile

Download (487 Bytes) Statistics
| Branch: | Tag: | Revision:
class ChangeAuditedChangesInAudits < ActiveRecord::Migration
# Sets the audited_changes to MEDIUMTEXT type in mysql
def up
if ['mysql', 'mysql2'].include? ActiveRecord::Base.connection.instance_values['config'][:adapter]
change_column :audits, :audited_changes, :mediumtext
end
end

def down
if ['mysql', 'mysql2'].include? ActiveRecord::Base.connection.instance_values['config'][:adapter]
change_column :audits, :audited_changes, :text
end
end
end
(369-369/369)