mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
5c977c6be7
Rename the first-organization original name. Users can change from the original name.
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
|
|
;
|