]> git.openstreetmap.org Git - rails.git/blob - db/migrate/20210510083028_create_active_storage_variant_records.active_storage.rb
Merge remote-tracking branch 'upstream/pull/3177'
[rails.git] / db / migrate / 20210510083028_create_active_storage_variant_records.active_storage.rb
1 # This migration comes from active_storage (originally 20191206030411)
2 class CreateActiveStorageVariantRecords < ActiveRecord::Migration[6.0]
3   def change
4     create_table :active_storage_variant_records do |t|
5       t.belongs_to :blob, :null => false, :index => false
6       t.string :variation_digest, :null => false
7
8       t.index [:blob_id, :variation_digest], :name => "index_active_storage_variant_records_uniqueness", :unique => true
9       t.foreign_key :active_storage_blobs, :column => :blob_id
10     end
11   end
12 end