discord-freepbx-manager/migrations/002_init_deletions_table.sql
Christopher Cookman 68d6402ffd - Disable unfinished CDR commands
- Impliment delayed auto-delete of orphaned extensions, with auto cancel.
2025-02-11 08:28:41 -07:00

5 lines
147 B
SQL

CREATE TABLE IF NOT EXISTS discord_deletions (
extension VARCHAR(20) PRIMARY KEY,
discordId VARCHAR(25) NOT NULL,
deleteAt TIMESTAMP NOT NULL
);