Sha256: aff9e371f738b33175070acfa0996f0226f3fafd4dea9a1594756a745293ebf4
Contents?: true
Size: 562 Bytes
Versions: 17
Compression:
Stored size: 562 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
17 entries across 17 versions & 1 rubygems