Sha256: 0b956546bc3c66c75b08d0863ca68cb06d876c19167e2a0a871471eea39c6579
Contents?: true
Size: 559 Bytes
Versions: 1
Compression:
Stored size: 559 Bytes
Contents
class CreatePhcdevworksTutorialCommandPostsVersions < ActiveRecord::Migration[6.0] TEXT_BYTES = 1_073_741_823 def change create_table :phcdevworks_tutorials_command_post_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_post_versions, %i(item_type item_id), :name => 'command_post_versions' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
phcdevworks_tutorials-11.0.0 | db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb |