Class: CreateVersions
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateVersions
- Defined in:
- lib/generators/et_history/templates/create_versions.rb
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 |
# File 'lib/generators/et_history/templates/create_versions.rb', line 2 def change create_table :versions do |t| t.string :item_type, :null => false t.integer :item_id, :null => false t.string :event, :null => false t.string :whodunnit t.text :object t.text :object_changes t.datetime :created_at end add_index :versions, [:item_type, :item_id] end |