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

11 lines
244 B
PHP

<?php
/*
* This migration adds a table to store custom css styles per user
*/
$db->exec('CREATE TABLE IF NOT EXISTS custom_css_style (
css TEXT DEFAULT "",
user_id INTEGER,
FOREIGN KEY (user_id) REFERENCES user(id)
)');