Sha256: 8df833c0c15a378e308d68531b6412b25190283c3bba5f2fec788ceada79c7eb
Contents?: true
Size: 614 Bytes
Versions: 15
Compression:
Stored size: 614 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
15 entries across 15 versions & 1 rubygems