Sha256: 9afa9e1d9d2a3925b44ff241d8ed38463f09f22f2decc7f5906faff3bb2b3823
Contents?: true
Size: 525 Bytes
Versions: 14
Compression:
Stored size: 525 Bytes
Contents
class CreatePhcmembersproProfileVersions < ActiveRecord::Migration[5.2] TEXT_BYTES = 1_073_741_823 def change create_table :phcmemberspro_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 :phcmemberspro_profile_versions, %i(item_type item_id), :name => 'mempro_profile_versions' end end
Version data entries
14 entries across 14 versions & 1 rubygems