summaryrefslogtreecommitdiffstats
path: root/.config/gajim/settings.sqlite
blob: 0db3f6e1dfac42c3c3fc1d60a4eda893b75dc482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE settings (
            name TEXT UNIQUE,
            settings TEXT
    );
INSERT INTO settings VALUES('app','{}');
INSERT INTO settings VALUES('soundevents','{}');
INSERT INTO settings VALUES('status_presets','{"Sleeping": {"message": "ZZZZzzzzzZZZZZ", "activity": "inactive", "subactivity": "sleeping", "mood": "sleepy"}, "Back soon": {"message": "Back in some minutes."}, "Eating": {"message": "I\u2019m eating.", "activity": "eating", "subactivity": "other"}, "Movie": {"message": "I\u2019m watching a movie.", "activity": "relaxing", "subactivity": "watching_a_movie"}, "Working": {"message": "I\u2019m working.", "activity": "working", "subactivity": "other"}, "Out": {"message": "I\u2019m out enjoying life.", "activity": "relaxing", "subactivity": "going_out"}}');
INSERT INTO settings VALUES('proxies','{"Tor": {"type": "socks5", "host": "localhost", "port": 9050}}');
INSERT INTO settings VALUES('plugins','{"omemo": {"active": true}, "pgp": {"active": true}}');
CREATE TABLE account_settings (
            account TEXT UNIQUE,
            settings TEXT
    );
COMMIT;