aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/extra/sql/bulkload/create-db.sql
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/extra/sql/bulkload/create-db.sql')
-rw-r--r--runtime/extra/sql/bulkload/create-db.sql15
1 files changed, 0 insertions, 15 deletions
diff --git a/runtime/extra/sql/bulkload/create-db.sql b/runtime/extra/sql/bulkload/create-db.sql
deleted file mode 100644
index a9d81d7c5..000000000
--- a/runtime/extra/sql/bulkload/create-db.sql
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Create CLDS database objects (tables, etc.)
-#
-#
-CREATE DATABASE `cldsdb4`;
-USE `cldsdb4`;
-DROP USER 'clds';
-CREATE USER 'clds';
-GRANT ALL on cldsdb4.* to 'clds' identified by 'sidnnd83K' with GRANT OPTION;
-CREATE DATABASE `clampacm`;
-USE `clampacm`;
-DROP USER 'policy';
-CREATE USER 'policy';
-GRANT ALL on clampacm.* to 'policy' identified by 'P01icY' with GRANT OPTION;
-FLUSH PRIVILEGES;