mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
chore(db): drop internal-project rename migration
Removes the data migration that renamed the internal Project row's displayName/description from 'Stack Dashboard' to 'Hexclave Dashboard'. Fresh installs still get the new name via seed.ts; existing deployments will keep the old strings until renamed by hand or in a later PR.
This commit is contained in:
parent
5775c7bbe9
commit
175b47b4f4
@ -1,14 +0,0 @@
|
||||
-- Rebrand: rename the internal-project display name and description from
|
||||
-- "Stack Dashboard" / "Stack's admin dashboard" to "Hexclave Dashboard" /
|
||||
-- "Hexclave's admin dashboard". Idempotent: only updates the row if it still
|
||||
-- holds the pre-rebrand defaults for BOTH fields, so any operator who renamed
|
||||
-- the internal project themselves (or even just one field) is left untouched.
|
||||
-- Re-running the migration after the rename is a no-op. Missing row (fresh
|
||||
-- install before seed) is also a no-op.
|
||||
|
||||
UPDATE "Project"
|
||||
SET "displayName" = 'Hexclave Dashboard',
|
||||
"description" = 'Hexclave''s admin dashboard'
|
||||
WHERE "id" = 'internal'
|
||||
AND "displayName" = 'Stack Dashboard'
|
||||
AND "description" = 'Stack''s admin dashboard';
|
||||
Loading…
Reference in New Issue
Block a user