Sha256: a165dd05d206d358b3e3d67b564fc0ff39cf6f7ce8671c86bce45d20c76ae8d5

Contents?: true

Size: 561 Bytes

Versions: 1

Compression:

Stored size: 561 Bytes

Contents

class CreatePhcdevworksTutorialCommandPostsVersions < ActiveRecord::Migration[6.0]
  TEXT_BYTES = 1_073_741_823
  def change
    create_table :phcdevworks_tutorials_command_posts_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_posts_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-10.0.0 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb