Sha256: f6bb4617c7e3dd12980c781f4debd5e76ceef4388cc069b2063cf9b3d9a6fc61

Contents?: true

Size: 545 Bytes

Versions: 4

Compression:

Stored size: 545 Bytes

Contents

class CreatePhcscriptcdnExtensionVersions < ActiveRecord::Migration[7.0]
  TEXT_BYTES = 1_073_741_823
  def change

    create_table :phcscriptcdn_extension_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 :phcscriptcdn_extension_versions, %i(item_type item_id), :name => 'scriptcdnpro_ext_versions'

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcscriptcdn-55.0.3 db/migrate/20170517064030_create_phcscriptcdn_extension_versions.rb
phcscriptcdn-55.0.2 db/migrate/20170517064030_create_phcscriptcdn_extension_versions.rb
phcscriptcdn-55.0.1 db/migrate/20170517064030_create_phcscriptcdn_extension_versions.rb
phcscriptcdn-55.0.0 db/migrate/20170517064030_create_phcscriptcdn_extension_versions.rb