mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-18 23:09:47 +02:00
Initial settings implementation
This commit is contained in:
11
src-tauri/migrations/20240111221224_settings.sql
Normal file
11
src-tauri/migrations/20240111221224_settings.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE settings
|
||||
(
|
||||
id TEXT NOT NULL
|
||||
PRIMARY KEY,
|
||||
model TEXT DEFAULT 'settings' NOT NULL,
|
||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
||||
follow_redirects BOOLEAN DEFAULT TRUE NOT NULL,
|
||||
validate_certificates BOOLEAN DEFAULT TRUE NOT NULL,
|
||||
theme TEXT DEFAULT 'system' NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user