diff --git a/core/db/migrate/20230427095534_drop_deprecated_address_id_from_shipments.rb b/core/db/migrate/20230427095534_drop_deprecated_address_id_from_shipments.rb index db3e42e7d89..3849a4e2708 100644 --- a/core/db/migrate/20230427095534_drop_deprecated_address_id_from_shipments.rb +++ b/core/db/migrate/20230427095534_drop_deprecated_address_id_from_shipments.rb @@ -5,7 +5,7 @@ def up end def down - add_column :spree_shipments, :deprecated_address_id + add_column :spree_shipments, :deprecated_address_id, :integer add_index :spree_shipments, :deprecated_address_id, name: :index_spree_shipments_on_deprecated_address_id end end