We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e53cd53 commit e8e916fCopy full SHA for e8e916f
1 file changed
sql/CreateDB.sql
@@ -1,15 +1,15 @@
1
-DROP DATABASE IF EXISTS conduit_database;
+DROP DATABASE IF EXISTS conduit;
2
3
-CREATE DATABASE conduit_database;
+CREATE DATABASE conduit;
4
5
-GRANT ALL ON conduit_database.* TO 'a' @ 'localhost' IDENTIFIED BY
+GRANT ALL ON conduit.* TO 'a' @ 'localhost' IDENTIFIED BY
6
'password' WITH GRANT OPTION;
7
8
FLUSH PRIVILEGES;
9
10
SHOW DATABASES;
11
12
-USE conduit_database;
+USE conduit;
13
14
CREATE EXTENSION IF NOT EXISTS citext;
15
0 commit comments