imaginar/init.sql
2024-10-19 20:24:54 +09:00

12 lines
336 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- データベースの作成
CREATE DATABASE IF NOT EXISTS `imaginar`;
-- ユーザーの作成MySQL 8.0対応)
CREATE USER IF NOT EXISTS 'appuser'@'%' IDENTIFIED WITH mysql_native_password BY 'hE7nb7Cnvkxd';
-- 権限の付与
GRANT ALL PRIVILEGES ON `imaginar`.* TO 'appuser'@'%';
-- 権限のリロード
FLUSH PRIVILEGES;