labelbase/mysql/init.sql
Xavier Fiechter 8b2145e653 .
2024-02-09 22:47:19 +01:00

16 lines
368 B
SQL

-- File: init.sql
-- Create the database
CREATE DATABASE IF NOT EXISTS labelbase;
-- Switch to the database
USE labelbase;
-- Create the user
CREATE USER 'ulabelbase'@'%' IDENTIFIED BY 'vrZvZmX6Kp16B9tTa8JAA4RtAkWEhi';
-- Grant privileges to the user
GRANT ALL PRIVILEGES ON labelbase.* TO 'ulabelbase'@'%';
-- Flush privileges to apply changes
FLUSH PRIVILEGES;