labelbase/mysql/init.sql

17 lines
353 B
MySQL
Raw Permalink Normal View History

2024-02-09 22:47:19 +01:00
-- File: init.sql
-- Create the database
CREATE DATABASE IF NOT EXISTS labelbase;
-- Switch to the database
USE labelbase;
-- Create the user
2024-03-04 12:07:29 +01:00
CREATE USER 'ulabelbase'@'%' IDENTIFIED BY '$MYSQL_PASSWORD';
2024-02-09 22:47:19 +01:00
-- Grant privileges to the user
GRANT ALL PRIVILEGES ON labelbase.* TO 'ulabelbase'@'%';
-- Flush privileges to apply changes
FLUSH PRIVILEGES;