diff --git a/db/migrate/20250103043626_delete_checkout_zone_and_currency_preferences.rb b/db/migrate/20250103043626_delete_checkout_zone_and_currency_preferences.rb index 0b6f5939eb..0737a6a2e0 100644 --- a/db/migrate/20250103043626_delete_checkout_zone_and_currency_preferences.rb +++ b/db/migrate/20250103043626_delete_checkout_zone_and_currency_preferences.rb @@ -2,7 +2,7 @@ class DeleteCheckoutZoneAndCurrencyPreferences < ActiveRecord::Migration[7.0] def up - execute <<~SQL + execute <<~SQL.squish DELETE FROM spree_preferences WHERE key IN ( '/spree/app_configuration/checkout_zone', diff --git a/db/migrate/20250113055412_customers_created_manually_remove_null.rb b/db/migrate/20250113055412_customers_created_manually_remove_null.rb index 75150131e4..048a7b9700 100644 --- a/db/migrate/20250113055412_customers_created_manually_remove_null.rb +++ b/db/migrate/20250113055412_customers_created_manually_remove_null.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + class CustomersCreatedManuallyRemoveNull < ActiveRecord::Migration[7.0] def change change_column_null :customers, :created_manually, true