Sha256: 3afb19221527bbdbaa6659435f63f5dc7023320eaf41802d758380a73d0c9bba

Contents?: true

Size: 976 Bytes

Versions: 9

Compression:

Stored size: 976 Bytes

Contents

class CreateActiveStorageVariantRecords < ActiveRecord::Migration[6.0]
  def change
    # Use Active Record's configured type for primary key
    create_table :active_storage_variant_records, id: primary_key_type, if_not_exists: true do |t|
      t.belongs_to :blob, null: false, index: false, type: blobs_primary_key_type
      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

  private
    def primary_key_type
      config = Rails.configuration.generators
      config.options[config.orm][:primary_key_type] || :primary_key
    end

    def blobs_primary_key_type
      pkey_name = connection.primary_key(:active_storage_blobs)
      pkey_column = connection.columns(:active_storage_blobs).find { |c| c.name == pkey_name }
      pkey_column.bigint? ? :bigint : pkey_column.type
    end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activestorage-7.0.2.3/db/update_migrate/20191206030411_create_active_storage_variant_records.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activestorage-7.0.2.3/db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.2.4 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.2.3 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.2.2 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.2.1 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.2 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.1 db/update_migrate/20191206030411_create_active_storage_variant_records.rb
activestorage-7.0.0 db/update_migrate/20191206030411_create_active_storage_variant_records.rb