Initial commit.

This commit is contained in:
2025-07-12 09:07:17 +02:00
commit 24bc192085
7 changed files with 170 additions and 0 deletions

5
init.sql Normal file
View File

@@ -0,0 +1,5 @@
-- init.sql
CREATE DATABASE IF NOT EXISTS demo;
CREATE USER IF NOT EXISTS 'teddy'@'%' IDENTIFIED BY 'slap_chop_rinse_erect';
GRANT ALL PRIVILEGES ON demo.* TO 'teddy'@'%';
FLUSH PRIVILEGES;