Sha256: 81e177b01ce0a4d31d0537e4e1e3cf5619e6ed1b6606569dd9a2a318769a518f
Contents?: true
Size: 534 Bytes
Versions: 25
Compression:
Stored size: 534 Bytes
Contents
# frozen_string_literal: true # This migration comes from active_storage (originally 20191206030411) 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 [: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
25 entries across 25 versions & 1 rubygems