Sha256: 2916e94b3f3813593668544204d22d1d10a8ee9e126cc12f979348ca3203c60c
Contents?: true
Size: 508 Bytes
Versions: 3
Compression:
Stored size: 508 Bytes
Contents
class CreatePhcmembersProfileVersions < ActiveRecord::Migration[5.1] TEXT_BYTES = 1_073_741_823 def change create_table :phcmembers_profile_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, limit: TEXT_BYTES t.datetime :created_at end add_index :phcmembers_profile_versions, %i(item_type item_id), :name => 'mem_profile_versions' end end
Version data entries
3 entries across 3 versions & 1 rubygems