dosubot[bot] commented on issue #7864: URL: https://github.com/apache/incubator-devlake/issues/7864#issuecomment-2274000056
<!-- Answer --> To set the character set and collation for your MySQL RDS instance, you can use the following SQL commands: ```sql CREATE DATABASE IF NOT EXISTS lake; ALTER DATABASE lake CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; ``` These commands will create the database named `lake` if it does not already exist and then alter the database to use the specified character set and collation <sup>[[1]](https://github.com/apache/incubator-devlake/blob/main/backend/scripts/docker/mysql/init-ds.sql)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
