feat: save the selected image to teh library
This commit is contained in:
parent
3523dac46e
commit
51bc2f177f
2 changed files with 44 additions and 5 deletions
8
db/migrations/11_server-icons.sql
Normal file
8
db/migrations/11_server-icons.sql
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue