* `configInput.schema` is forwarded to `config.schema` as is.
(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig)
| 89 | * `configInput.schema` is forwarded to `config.schema` as is. |
| 90 | */ |
| 91 | function defineSchemaConfig(config: DeepMutable<PrismaConfigInternal>, configInput: PrismaConfig) { |
| 92 | if (!configInput.schema) { |
| 93 | return |
| 94 | } |
| 95 | |
| 96 | config.schema = configInput.schema |
| 97 | debug('[config.schema]: %o', config.schema) |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * `configInput.migrations` is forwarded to `config.migrations` as is. |