Sha256: 60c83d3873682e71827a99fade72f0fdf409127bf2c1f89f8f14a6c72d8b5280
Contents?: true
Size: 412 Bytes
Versions: 79
Compression:
Stored size: 412 Bytes
Contents
class CreateVersions < ActiveRecord::Migration[4.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.jsonb :object t.jsonb :object_changes t.datetime :created_at end add_index :versions, [:item_type, :item_id] end end
Version data entries
79 entries across 79 versions & 1 rubygems