docs: remove databaseSchema configuration (#12699)

This commit is contained in:
Shahed Nasser
2025-06-10 17:00:14 +03:00
committed by GitHub
parent f29e21f61e
commit d8b196d6b1
5 changed files with 17922 additions and 17949 deletions
@@ -207,23 +207,6 @@ module.exports = defineConfig({
})
```
### databaseSchema
The `projectConfig.databaseSchema` configuration specifies the PostgreSQL database schema to connect to, which is `public` by default. Use this configuration only if you want to connect to a different schema.
#### Example
```ts title="medusa-config.ts"
module.exports = defineConfig({
projectConfig: {
databaseSchema: process.env.DATABASE_SCHEMA ||
"custom",
// ...
},
// ...
})
```
### databaseUrl
The `projectConfig.databaseUrl` configuration specifies the PostgreSQL connection URL of the database to connect to. Its format is: