From 68c556cdca8149f58d8da3898d87b04552e75986 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Thu, 29 Aug 2024 10:23:10 +0200 Subject: [PATCH] Comment update about WAL & Snappea --- snappea/migrations/0001_initial.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snappea/migrations/0001_initial.py b/snappea/migrations/0001_initial.py index e625d87..8c6c875 100644 --- a/snappea/migrations/0001_initial.py +++ b/snappea/migrations/0001_initial.py @@ -6,8 +6,8 @@ logger = logging.getLogger("snappea") def set_wal_pragma(apps, schema_editor): - # even though we're currently on "sqlite only", we take the forward-looking approach of at least having the escape - # hatch for other DBs: + # even though we're currently on "sqlite only" for the snappea database, we take the forward-looking approach of at + # least having the escape hatch for other DBs: if not schema_editor.connection.vendor == 'sqlite': logger.info('\n Migration info: Database vendor: {}'.format(schema_editor.connection.vendor)) logger.info(' Migration info: Skipping set_wal migration')