mirror of
https://github.com/Traceworks2023/nxtgauge-backend-rust.git
synced 2026-06-10 20:01:28 +00:00
8 lines
148 B
MySQL
8 lines
148 B
MySQL
|
|
UPDATE company_profiles
|
||
|
|
SET status = 'ACTIVE'
|
||
|
|
WHERE status = 'APPROVED';
|
||
|
|
|
||
|
|
UPDATE customer_profiles
|
||
|
|
SET status = 'ACTIVE'
|
||
|
|
WHERE status = 'APPROVED';
|