mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
11 lines
244 B
PHP
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)
|
|
)'); |