- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
297 B
Bash
Executable File
12 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL
|
|
CREATE DATABASE IF NOT EXISTS testing;
|
|
EOSQL
|
|
|
|
if [ -n "$MYSQL_USER" ]; then
|
|
mysql --user=root --password="$MYSQL_ROOT_PASSWORD" <<-EOSQL
|
|
GRANT ALL PRIVILEGES ON \`testing%\`.* TO '$MYSQL_USER'@'%';
|
|
EOSQL
|
|
fi
|