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')