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

8 lines
148 B
MySQL
Raw Normal View History

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