Class: CreateAudits
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateAudits
- Defined in:
- lib/generators/templates/audits_table.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/templates/audits_table.rb', line 14 def self.down drop_table :audits end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/generators/templates/audits_table.rb', line 2 def self.up create_table :audits do |t| t.string :dumped_changes t.string :action t.string :model_changed t.integer :element_id t.string :invoker t. end end |