Sha256: a13ab9bc993e966af4737a218a4216152db66f7e2a20bc68cee7bc95679b4cf8
Contents?: true
Size: 538 Bytes
Versions: 13
Compression:
Stored size: 538 Bytes
Contents
class CreatePhcdevworksPressPostVersions < ActiveRecord::Migration[6.0] TEXT_BYTES = 1_073_741_823 def change create_table :phcdevworks_press_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_press_post_versions, %i(item_type item_id), :name => 'press_post_versions' end end
Version data entries
13 entries across 13 versions & 1 rubygems