diff --git a/config/log.html b/config/log.html
deleted file mode 100644
index 158f968..0000000
--- a/config/log.html
+++ /dev/null
@@ -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;"
\ No newline at end of file
diff --git a/config/setup-database.sql b/config/setup-database.sql
deleted file mode 100644
index 944a58d..0000000
--- a/config/setup-database.sql
+++ /dev/null
@@ -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;