forgot log files

This commit is contained in:
2026-09-03 18:29:04 +02:00
parent 361cf93562
commit 1ef95596a2
2 changed files with 0 additions and 26 deletions
-2
View File
@@ -1,2 +0,0 @@
[03.09.2026 17:30:38] Notice - /var/www/html/objects/inc/Db.php - Last query had no effect on db: "UPDATE users SET token = '', token_exp = '0000-00-00 00:00:00' WHERE id_user = '2' LIMIT 1;"
-24
View File
@@ -1,24 +0,0 @@
-- Bootstrap for a fresh MyThoughts install.
--
-- Only the database and its user are created here. The schema itself is not in
-- this file on purpose: Main::install() builds it from the table description in
-- MyThoughts::getSqlOptions(), so the structure has exactly one definition and
-- a migration can never drift from it. On first run the app finds an empty
-- database and installs itself.
--
-- Run as an administrator:
-- mariadb -u root -p < config/setup-database.sql
--
-- Then put the same credentials in config/settings.php.
CREATE DATABASE IF NOT EXISTS `mythoughts`
DEFAULT CHARACTER SET utf8mb4
DEFAULT COLLATE utf8mb4_general_ci;
CREATE USER IF NOT EXISTS 'mythoughts'@'localhost' IDENTIFIED BY 'mythoughts';
-- ALL on the one schema, which also lets the app create and drop it during a
-- first-run install without handing it rights over anything else on the server.
GRANT ALL PRIVILEGES ON `mythoughts`.* TO 'mythoughts'@'localhost';
FLUSH PRIVILEGES;