7 lines
148 B
SQL
7 lines
148 B
SQL
UPDATE company_profiles
|
|
SET status = 'ACTIVE'
|
|
WHERE status = 'APPROVED';
|
|
|
|
UPDATE customer_profiles
|
|
SET status = 'ACTIVE'
|
|
WHERE status = 'APPROVED';
|