mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
4 lines
176 B
SQL
4 lines
176 B
SQL
-- It's not possible to drop enum values from enum types, so the UP has "IF NOT EXISTS"
|
|
|
|
UPDATE users SET status = 'active'::user_status WHERE status = 'dormant'::user_status;
|