Sha256: f10f58f62a0c3f712d55d8697ad1dce1549b65795151f2e4472a33797e057def
Contents?: true
Size: 577 Bytes
Versions: 1
Compression:
Stored size: 577 Bytes
Contents
class CreatePhcdevworksTutorialsCommandPostVersions < 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-12.2.0 | db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb |