Sha256: 434fafe375b79fb594e25f391e73de07dad9e6a7431f58d47a0c0d8f92ce2a95
Contents?: true
Size: 563 Bytes
Versions: 16
Compression:
Stored size: 563 Bytes
Contents
class CreatePhcdevworksTutorialsTutorialPostVersions < ActiveRecord::Migration[6.0] TEXT_BYTES = 1_073_741_823 def change create_table :phcdevworks_tutorials_tutorial_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_tutorial_post_versions, %i(item_type item_id), :name => 'tutorial_post_versions' end end
Version data entries
16 entries across 16 versions & 1 rubygems