diff --git a/apps/backend/prisma/migrations/20260523000000_rename_internal_project_to_hexclave/migration.sql b/apps/backend/prisma/migrations/20260523000000_rename_internal_project_to_hexclave/migration.sql deleted file mode 100644 index b7e56ea2e..000000000 --- a/apps/backend/prisma/migrations/20260523000000_rename_internal_project_to_hexclave/migration.sql +++ /dev/null @@ -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';