no log: added autorollback to postgresql

This commit is contained in:
Marian Moravcik 2023-02-28 19:53:16 +01:00
parent 051d37f96e
commit fefec202d1
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ if postgresql:
host=settings.postgresql.host,
port=settings.postgresql.port,
autocommit=True,
autorollback=True,
autoconnect=True,
)
migrator = PostgresqlMigrator(database)