mirror of
https://github.com/enpaul/peewee-plus.git
synced 2025-09-18 17:38:38 +00:00
Add default sqlite pragma dictionary
This commit is contained in:
@@ -20,15 +20,25 @@ __authors__ = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
|
||||
|
||||
|
||||
__all__ = [
|
||||
"calc_batch_size",
|
||||
"EnumField",
|
||||
"JSONField",
|
||||
"PathField",
|
||||
"PrecisionFloatField",
|
||||
"JSONField",
|
||||
"EnumField",
|
||||
"SQLITE_DEFAULT_PRAGMAS",
|
||||
"SQLITE_DEFAULT_VARIABLE_LIMIT",
|
||||
"calc_batch_size",
|
||||
]
|
||||
|
||||
|
||||
SQLITE_DEFAULT_PRAGMAS: Dict[str, Any] = {
|
||||
"journal_mode": "wal",
|
||||
"cache_size": -1 * 64000,
|
||||
"foreign_keys": 1,
|
||||
"ignore_check_constraints": 0,
|
||||
"synchronous": 0,
|
||||
}
|
||||
|
||||
|
||||
SQLITE_DEFAULT_VARIABLE_LIMIT: int = 999
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user