c3lf-system-3/container/db/01_init.sql

7 lines
178 B
MySQL
Raw Normal View History

2019-12-17 00:33:40 +00:00
DROP DATABASE IF EXISTS lostfound;
CREATE DATABASE lostfound;
CREATE OR REPLACE USER lostfound IDENTIFIED BY 'lostfound';
GRANT ALL privileges ON `lostfound`.* TO 'lostfound';