mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
11 lines
158 B
SQL
11 lines
158 B
SQL
UPDATE
|
|
organizations
|
|
SET
|
|
name = 'coder',
|
|
display_name = 'Coder'
|
|
WHERE
|
|
-- The old name was too long.
|
|
name = 'first-organization'
|
|
AND is_default = true
|
|
;
|