Files
Wallos/migrations/000021.php
2025-07-21 22:53:35 +02:00

14 lines
355 B
PHP

<?php
/*
* This migration adds tables to store the data about a new notification method Ntfy
*/
$db->exec('CREATE TABLE IF NOT EXISTS ntfy_notifications (
enabled BOOLEAN DEFAULT 0,
host TEXT DEFAULT "",
topic TEXT DEFAULT "",
headers TEXT DEFAULT "",
user_id INTEGER,
FOREIGN KEY (user_id) REFERENCES user(id)
)');