initial version

This commit is contained in:
Danny Morabito 2024-12-02 14:28:00 +01:00
commit ebec73a666
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
14 changed files with 546 additions and 0 deletions

View file

@ -0,0 +1,10 @@
/*
Warnings:
- You are about to drop the `mail_queue` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
PRAGMA foreign_keys=off;
DROP TABLE "mail_queue";
PRAGMA foreign_keys=on;