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:
Bilal Godil 2026-05-26 18:46:37 -07:00
parent 5775c7bbe9
commit 175b47b4f4

View File

@ -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';