Sha256: d1e303b183a747da3d97c2f9ed19422e66d32858c4426a57d9af9ea0590b38fa
Contents?: true
Size: 559 Bytes
Versions: 14
Compression:
Stored size: 559 Bytes
Contents
class CreatePhcdevworksTutorialsCommandItemVersions < ActiveRecord::Migration[6.0] TEXT_BYTES = 1_073_741_823 def change create_table :phcdevworks_tutorials_command_item_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_tutorials_command_item_versions, %i(item_type item_id), :name => 'command_item_versions' end end
Version data entries
14 entries across 14 versions & 1 rubygems