mirror of
https://github.com/zadam/trilium.git
synced 2025-11-04 20:36:13 +01:00
added is_synced to options to better differentiate between synced and not synced options
This commit is contained in:
5
migrations/0067__add_is_synced_to_options.sql
Normal file
5
migrations/0067__add_is_synced_to_options.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
ALTER TABLE options ADD COLUMN is_synced INTEGER NOT NULL DEFAULT 0;
|
||||
|
||||
UPDATE options SET is_synced = 1 WHERE opt_name IN ('username', 'password_verification_hash', 'password_verification_salt',
|
||||
'password_derived_key_salt', 'encrypted_data_key', 'encrypted_data_key_iv',
|
||||
'protected_session_timeout', 'history_snapshot_time_interval');
|
||||
Reference in New Issue
Block a user