alarm-monitoring/migrations/1 - Init.sql
Christopher Cookman fdc05cd165
Changes
- Impliment /voice to change voice on account
- Fix migrations (kind of)
2024-10-29 07:51:23 -06:00

12 lines
337 B
SQL

CREATE TABLE IF NOT EXISTS 'accounts' (
'id' INTEGER PRIMARY KEY,
'phone' TEXT NOT NULL,
--'discord_webhook' TEXT NOT NULL,
'verified' INTEGER NOT NULL DEFAULT 0,
'verification_code' TEXT,
'code_sent_at' TEXT,
'discord_id' TEXT,
'ttsOverride' INTEGER NOT NULL DEFAULT 0,
'cooldown' TEXT,
'armState' INTEGER NOT NULL DEFAULT 0
)