Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions mission-control/docs/installation/self-hosted/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,15 @@ db:
name: mission-control-postgres
key: DB_URL
```

### Google Cloud SQL

When you use Google Cloud SQL for PostgreSQL, grant the Mission Control database user the permissions required by startup migrations before you install or upgrade Mission Control:

```sql
GRANT cloudsqlsuperuser TO your_username;
ALTER ROLE your_username CREATEROLE;
```

<br />
> Replace `your_username` with the user configured in the Mission Control database secret.
Comment thread
adityathebe marked this conversation as resolved.
Loading