Create MySQL DB scheme for TermWeb 4
-- Create schema script, character set and collation must be unchanged
CREATE DATABASE `termweb_prod` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER 'termweb_prod'@'%' IDENTIFIED BY 'sEcr3t!';
GRANT ALL PRIVILEGES ON `termweb\_prod`.* TO 'termweb_prod'@'%';
Â
Â