Skip to content

Commit e8e916f

Browse files
committed
correct db name
1 parent e53cd53 commit e8e916f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

sql/CreateDB.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
DROP DATABASE IF EXISTS conduit_database;
1+
DROP DATABASE IF EXISTS conduit;
22

3-
CREATE DATABASE conduit_database;
3+
CREATE DATABASE conduit;
44

5-
GRANT ALL ON conduit_database.* TO 'a' @ 'localhost' IDENTIFIED BY
5+
GRANT ALL ON conduit.* TO 'a' @ 'localhost' IDENTIFIED BY
66
'password' WITH GRANT OPTION;
77

88
FLUSH PRIVILEGES;
99

1010
SHOW DATABASES;
1111

12-
USE conduit_database;
12+
USE conduit;
1313

1414
CREATE EXTENSION IF NOT EXISTS citext;
1515

0 commit comments

Comments
 (0)