Align on release 4.1.3
[oom.git] / kubernetes / clamp / charts / mariadb / resources / config / mariadb / docker-entrypoint-initdb.d / bulkload / create-db.sql
1 #
2 # Create CLDS database objects (tables, etc.)
3 #
4 #
5 CREATE DATABASE `cldsdb4`;
6 USE `cldsdb4`;
7 DROP USER 'clds';
8 CREATE USER 'clds';
9 GRANT ALL on cldsdb4.* to 'clds' identified by 'sidnnd83K' with GRANT OPTION;
10 FLUSH PRIVILEGES;
11