mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #43776 from lifeiscontent/patch-1
Update 20191206030411_create_active_storage_variant_records.rb
This commit is contained in:
commit
6172f541d8
1 changed files with 8 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
class CreateActiveStorageVariantRecords < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
unless table_exists?(:active_storage_variant_records)
|
||||
# Use Active Record's configured type for primary key
|
||||
create_table :active_storage_variant_records, id: primary_key_type do |t|
|
||||
t.belongs_to :blob, null: false, index: false, type: blobs_primary_key_type
|
||||
|
@ -9,6 +10,7 @@ class CreateActiveStorageVariantRecords < ActiveRecord::Migration[6.0]
|
|||
t.foreign_key :active_storage_blobs, column: :blob_id
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
def primary_key_type
|
||||
|
|
Loading…
Reference in a new issue