15 lines
396 B
Ruby
15 lines
396 B
Ruby
# Add the version table necessary to paper trail
|
|
class CreateVersions < ActiveRecord::Migration
|
|
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.datetime :created_at
|
|
end
|
|
add_index :versions, %i[item_type item_id]
|
|
end
|
|
end
|