Skip to content

Commit 106456f

Browse files
committed
data: Add sqlite_synchronous
1 parent d22df55 commit 106456f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

data/settings.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4178,6 +4178,14 @@ Path to the sqlite database.`
41784178
Allows using write-ahead logging mode for database.`
41794179
},
41804180

4181+
sqlite_synchronous: {
4182+
tags: [ 'sql-sqlite' ],
4183+
values: setting_types.ENUM,
4184+
values_enum: ['off', 'normal', 'full', 'extra'],
4185+
default: 'full',
4186+
text: `
4187+
Sets the synchronization mode for SQlite database. See https://sqlite.org/pragma.html#pragma_synchronous for full explanation of values. This has no effect if database is opened in read-only mode.`
4188+
41814189
sqlite_readonly: {
41824190
tags: [ 'sql-sqlite' ],
41834191
values: setting_types.BOOLEAN,

0 commit comments

Comments
 (0)