Sha256: 89c7e5b0110a1c90049b7d1437f1dc9828ffc23948edc8b0bef1de1dadb2cbb8

Contents?: true

Size: 433 Bytes

Versions: 26

Compression:

Stored size: 433 Bytes

Contents

class CreateActiveStorageVariantRecords < ActiveRecord::Migration[6.0]
  def change
    create_table :active_storage_variant_records do |t|
      t.belongs_to :blob, null: false, index: false
      t.string :variation_digest, null: false

      t.index %i[ blob_id variation_digest ], name: "index_active_storage_variant_records_uniqueness", unique: true
      t.foreign_key :active_storage_blobs, column: :blob_id
    end
  end
end

Version data entries

26 entries across 26 versions & 4 rubygems

Version Path
activestorage-6.1.2.1 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-6.1.2 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-6.1.1 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-6.1.0 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-6.1.0.rc2 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-6.1.0.rc1 db/update_migrate/20191206030411_create_active_storage_variant_records.rb