added is_synced to options to better differentiate between synced and not synced options

This commit is contained in:
azivner
2018-01-11 22:45:25 -05:00
parent 231c245c87
commit 0575924cf1
8 changed files with 177 additions and 40 deletions

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