11 lines
393 B
SQL
11 lines
393 B
SQL
-- Create database if it doesn't exist
|
|
CREATE DATABASE IF NOT EXISTS akiyama_manga CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
|
|
|
-- Use the database
|
|
USE akiyama_manga;
|
|
|
|
-- Grant privileges to root user
|
|
GRANT ALL PRIVILEGES ON akiyama_manga.* TO 'root'@'localhost' IDENTIFIED BY 'root';
|
|
GRANT ALL PRIVILEGES ON akiyama_manga.* TO 'root'@'127.0.0.1' IDENTIFIED BY 'root';
|
|
FLUSH PRIVILEGES;
|