Sha256: 7fe6e40ae12da6d616dc9c96fade0e72d6e813c2079101e76f4ddb071b92713a
Contents?: true
Size: 455 Bytes
Versions: 79
Compression:
Stored size: 455 Bytes
Contents
class CreateHDVersions < ActiveRecord::Migration[4.2] def change create_table :hd_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 :hd_versions, [:item_type, :item_id], name: "hd_versions_type_id" end end
Version data entries
79 entries across 79 versions & 1 rubygems