nxtgauge-backend-rust/crates/db/migrations/20260319090000_backfill_active_profiles_to_approved.up.sql

8 lines
148 B
MySQL
Raw Normal View History

UPDATE company_profiles
SET status = 'APPROVED'
WHERE status = 'ACTIVE';
UPDATE customer_profiles
SET status = 'APPROVED'
WHERE status = 'ACTIVE';