Project named projects

Running on-prem and had a user create a project called projects. Now I can’t get to the setting s page of the individual project, it just shows all projects. How can I rename or delete this project named projects?

You can pop open $ sentry shell and enter the following:

from sentry.models import Project
Project.objects.filter(slug="projects").update(slug="something-else")

That worked flawlessly. Thanks!

I have a similar case: project name and slug differ. Is it safe to apply the same solution here? Will renaming the project solve it?