mirror of
https://github.com/skoelle/calender_sync.git
synced 2026-09-17 18:20:24 +00:00
6 lines
306 B
SQL
6 lines
306 B
SQL
-- Auf dem MariaDB LXC einmalig ausfuehren (z.B. via mysql -u root -p)
|
|
CREATE DATABASE IF NOT EXISTS calendar_sync CHARACTER SET utf8mb4;
|
|
CREATE USER IF NOT EXISTS 'calendar_sync'@'%' IDENTIFIED BY 'HIER_SICHERES_PASSWORT';
|
|
GRANT ALL PRIVILEGES ON calendar_sync.* TO 'calendar_sync'@'%';
|
|
FLUSH PRIVILEGES;
|