Keep legacy_alter_table off

Newer Django will set this for us,
but it won't matter if it is disabled twice.
This commit is contained in:
tcely 2024-12-11 13:42:05 -05:00 committed by GitHub
parent 7e872bf8b5
commit 0ab0605d22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,6 +49,7 @@ else:
"OPTIONS": {
"transaction_mode": "IMMEDIATE",
"init_command": """
PRAGMA legacy_alter_table = OFF;
PRAGMA auto_vacuum = INCREMENTAL;
PRAGMA incremental_vacuum(100);
""",