Sha256: d616e84d29d368bbab058d56cbcee795f1161393cfeb26ba6f04c036d3cf04c7
Contents?: true
Size: 568 Bytes
Versions: 2
Compression:
Stored size: 568 Bytes
Contents
class CreatePhcdevworksCoreModulesOptimizationVersions < ActiveRecord::Migration[6.0] TEXT_BYTES = 1_073_741_823 def change create_table :phcdevworks_core_modules_optimization_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 :phcdevworks_core_modules_optimization_versions, %i(item_type item_id), :name => 'core_optimize_versions' end end
Version data entries
2 entries across 2 versions & 1 rubygems