You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialize database and database user on first launch if needed. Also an environmental to disable this should be present.
For example for MySQL/MariaDB it'd be:
CREATE USER '<USERNAME>'@'<ADDRESS>' IDENTIFIED BY '<PASSWORD>';
CREATEDATABASEIF NOT EXISTS <DATABASE_NAME> CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES on<DATABASE_NAME>.* to '<USERNAME>'@'<ADDRESS>';
FLUSH privileges;
The utf8mb4 COLLATE utf8mb4_unicode_ci helps with support for Japanese, Chinese etc. characters.
The text was updated successfully, but these errors were encountered:
Initialize database and database user on first launch if needed. Also an environmental to disable this should be present.
For example for MySQL/MariaDB it'd be:
The
utf8mb4 COLLATE utf8mb4_unicode_ci
helps with support for Japanese, Chinese etc. characters.The text was updated successfully, but these errors were encountered: