From d78cbce4f3bd014a87c4bc97ddbad1976e78947b Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Mon, 20 Jun 2022 14:47:29 +1000 Subject: [PATCH] Remove accidental modification of the db schema fa74dae99c77f1b764a164241970637b5d82cbbb changed the schema file even though the migration doesn't touch the database structure. A previous development version of the migration did this but the finally merged version didn't. So this schema is not valid. Let's hope that nobody set up a new instance with the changed schema and we just fix it to what it was before. --- db/schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index edfd135051..010059c3d6 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1300,7 +1300,7 @@ ActiveRecord::Schema.define(version: 2022_06_02_013938) do add_foreign_key "spree_tax_rates", "spree_zones", column: "zone_id", name: "spree_tax_rates_zone_id_fk" add_foreign_key "spree_taxons", "spree_taxonomies", column: "taxonomy_id", name: "spree_taxons_taxonomy_id_fk" add_foreign_key "spree_taxons", "spree_taxons", column: "parent_id", name: "spree_taxons_parent_id_fk" - add_foreign_key "spree_users", "spree_addresses", column: "bill_address_id", name: "spree_users_bill_address_id_fk", on_delete: :nullify + add_foreign_key "spree_users", "spree_addresses", column: "bill_address_id", name: "spree_users_bill_address_id_fk" add_foreign_key "spree_users", "spree_addresses", column: "ship_address_id", name: "spree_users_ship_address_id_fk" add_foreign_key "spree_variants", "spree_products", column: "product_id", name: "spree_variants_product_id_fk" add_foreign_key "spree_zone_members", "spree_zones", column: "zone_id", name: "spree_zone_members_zone_id_fk"