mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
Exclude system users from users.sql queries Signed-off-by: Danny Kopping <danny@coder.com>
5 lines
94 B
SQL
5 lines
94 B
SQL
ALTER TABLE users
|
|
DROP COLUMN IF EXISTS is_system;
|
|
|
|
DROP INDEX IF EXISTS user_is_system_idx;
|