We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for creating unlogged PostgreSQL tables: https://www.postgresql.org/docs/current/sql-createtable.html
I'd suggest to add a boolean unlogged option to default_table_options doctrine configuration https://www.doctrine-project.org/projects/doctrine-bundle/en/latest/configuration.html For example:
unlogged
default_table_options
doctrine: dbal: default_table_options: unlogged: true
This option could be handled in PostgreSQLPlatform::_getCreateTableSQL
PostgreSQLPlatform::_getCreateTableSQL
The text was updated successfully, but these errors were encountered:
Add support for unlogged tables in PostgreSQL (#6046)
f97f825
| Q | A |------------- | ----------- | Type | bug/feature/improvement | Feature | see #6044 #### Summary Add support for creating unlogged PostgreSQL tables: https://www.postgresql.org/docs/current/sql-createtable.html I added a boolean `unlogged` option to `default_table_options` doctrine configuration https://www.doctrine-project.org/projects/doctrine-bundle/en/latest/configuration.html For example: ```yaml doctrine: dbal: default_table_options: unlogged: true ``` --------- Co-authored-by: Alexander M. Turek <me@derrabus.de>
Merge branch 'doctrine:3.6.x' into postgres-unlogged-tables-doctrine#…
83fd60c
…6044
Add documentation for doctrine#6044
3d5150b
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sorry, something went wrong.
No branches or pull requests
Feature Request
Summary
Add support for creating unlogged PostgreSQL tables:
https://www.postgresql.org/docs/current/sql-createtable.html
I'd suggest to add a boolean
unlogged
option todefault_table_options
doctrine configurationhttps://www.doctrine-project.org/projects/doctrine-bundle/en/latest/configuration.html
For example:
This option could be handled in
PostgreSQLPlatform::_getCreateTableSQL
The text was updated successfully, but these errors were encountered: