Project

General

Profile

Download (217 Bytes) Statistics
| Branch: | Tag: | Revision:
class RenameChangesToAuditedChanges < ActiveRecord::Migration
def self.up
rename_column :audits, :changes, :audited_changes
end

def self.down
rename_column :audits, :audited_changes, :changes
end
end
(87-87/242)