-- Renames `email` → `mobile` on upgrades from the email-based super admin schema.
-- Skipped automatically when `email` column is already absent.
ALTER TABLE users
  CHANGE COLUMN email mobile VARCHAR(20) NOT NULL;
