discord-bot/db/migrations/11_server-icons.sql

9 lines
221 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS server_icons (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
2025-06-16 05:19:58 +01:00
path TEXT NOT NULL,
date TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS index_name ON server_icons (name);