feat: save the selected image to teh library

This commit is contained in:
silver 2025-06-14 16:46:04 +01:00
parent 3523dac46e
commit 51bc2f177f
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
2 changed files with 44 additions and 5 deletions

View file

@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS server_icons (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
date TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS index_name ON server_icons (name);