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';
|