Code Review
/
oom.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ea4d97c1b57a58f952aab59bc9fb7f0bdeddf86f
[oom.git]
/
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