summaryrefslogtreecommitdiff
path: root/spec/support/helpers/database/table_schema_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/database/table_schema_helpers.rb')
-rw-r--r--spec/support/helpers/database/table_schema_helpers.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/support/helpers/database/table_schema_helpers.rb b/spec/support/helpers/database/table_schema_helpers.rb
index 472eaa45b4b..815c37e00e5 100644
--- a/spec/support/helpers/database/table_schema_helpers.rb
+++ b/spec/support/helpers/database/table_schema_helpers.rb
@@ -3,7 +3,9 @@
module Database
module TableSchemaHelpers
def connection
- ActiveRecord::Base.connection
+ # We use ActiveRecord::Base.connection here because this is mainly used for database migrations
+ # where we override the connection on ActiveRecord::Base.connection
+ ActiveRecord::Base.connection # rubocop:disable Database/MultipleDatabases
end
def expect_table_to_be_replaced(original_table:, replacement_table:, archived_table:)