Browse Source

Fix migrations failing due to strong-migrations update (#13680)

master
Eugen Rochko 3 years ago
committed by GitHub
parent
commit
5892e8175a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 7 deletions
  1. +1
    -1
      db/migrate/20171125031751_add_invite_id_to_users.rb
  2. +1
    -1
      db/migrate/20180402031200_add_assigned_account_id_to_reports.rb
  3. +4
    -2
      db/migrate/20180510214435_add_access_token_id_to_web_push_subscriptions.rb
  4. +1
    -1
      db/migrate/20181219235220_add_created_by_application_id_to_users.rb
  5. +1
    -1
      db/migrate/20190103124754_add_scheduled_status_id_to_media_attachments.rb
  6. +1
    -1
      db/migrate/20200312185443_add_parent_id_to_email_domain_blocks.rb

+ 1
- 1
db/migrate/20171125031751_add_invite_id_to_users.rb View File

@ -1,5 +1,5 @@
class AddInviteIdToUsers < ActiveRecord::Migration[5.1]
def change
add_reference :users, :invite, null: true, default: nil, foreign_key: { on_delete: :nullify }, index: false
safety_assured { add_reference :users, :invite, null: true, default: nil, foreign_key: { on_delete: :nullify }, index: false }
end
end

+ 1
- 1
db/migrate/20180402031200_add_assigned_account_id_to_reports.rb View File

@ -1,5 +1,5 @@
class AddAssignedAccountIdToReports < ActiveRecord::Migration[5.1]
def change
add_reference :reports, :assigned_account, null: true, default: nil, foreign_key: { on_delete: :nullify, to_table: :accounts }, index: false
safety_assured { add_reference :reports, :assigned_account, null: true, default: nil, foreign_key: { on_delete: :nullify, to_table: :accounts }, index: false }
end
end

+ 4
- 2
db/migrate/20180510214435_add_access_token_id_to_web_push_subscriptions.rb View File

@ -1,6 +1,8 @@
class AddAccessTokenIdToWebPushSubscriptions < ActiveRecord::Migration[5.2]
def change
add_reference :web_push_subscriptions, :access_token, null: true, default: nil, foreign_key: { on_delete: :cascade, to_table: :oauth_access_tokens }, index: false
add_reference :web_push_subscriptions, :user, null: true, default: nil, foreign_key: { on_delete: :cascade }, index: false
safety_assured do
add_reference :web_push_subscriptions, :access_token, null: true, default: nil, foreign_key: { on_delete: :cascade, to_table: :oauth_access_tokens }, index: false
add_reference :web_push_subscriptions, :user, null: true, default: nil, foreign_key: { on_delete: :cascade }, index: false
end
end
end

+ 1
- 1
db/migrate/20181219235220_add_created_by_application_id_to_users.rb View File

@ -2,7 +2,7 @@ class AddCreatedByApplicationIdToUsers < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def change
add_reference :users, :created_by_application, foreign_key: { to_table: 'oauth_applications', on_delete: :nullify }, index: false
safety_assured { add_reference :users, :created_by_application, foreign_key: { to_table: 'oauth_applications', on_delete: :nullify }, index: false }
add_index :users, :created_by_application_id, algorithm: :concurrently
end
end

+ 1
- 1
db/migrate/20190103124754_add_scheduled_status_id_to_media_attachments.rb View File

@ -2,7 +2,7 @@ class AddScheduledStatusIdToMediaAttachments < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def change
add_reference :media_attachments, :scheduled_status, foreign_key: { on_delete: :nullify }, index: false
safety_assured { add_reference :media_attachments, :scheduled_status, foreign_key: { on_delete: :nullify }, index: false }
add_index :media_attachments, :scheduled_status_id, algorithm: :concurrently
end
end

+ 1
- 1
db/migrate/20200312185443_add_parent_id_to_email_domain_blocks.rb View File

@ -1,5 +1,5 @@
class AddParentIdToEmailDomainBlocks < ActiveRecord::Migration[5.2]
def change
add_reference :email_domain_blocks, :parent, null: true, default: nil, foreign_key: { on_delete: :cascade, to_table: :email_domain_blocks }, index: false
safety_assured { add_reference :email_domain_blocks, :parent, null: true, default: nil, foreign_key: { on_delete: :cascade, to_table: :email_domain_blocks }, index: false }
end
end

Loading…
Cancel
Save