-- Free delivery has one owner: the shipping table.
--
-- `store_branding.freeDeliveryOverPaise` was added for the AI-search work (doc
-- 24 §7.5) before shipping had anywhere to put a threshold. Now that
-- ShippingChannel.freeAbovePaise exists, the two mean the same thing in two
-- places — and free shipping is per channel, which the branding column could
-- never express. "Free above ₹499" is honest for a local rider and ruinous for
-- Aizawl.
--
-- The storefront FAQ and the schema.org shippingDetails now DERIVE the figure
-- from the shipping configuration, so the number a shop advertises and the
-- number it charges cannot drift apart. Same argument that removed
-- `primaryColor` and `websiteUrl` from this table.
--
-- Idempotent; safe to re-run.
BEGIN;

ALTER TABLE store.store_branding
  DROP COLUMN IF EXISTS "freeDeliveryOverPaise";

COMMIT;
