fixed another character

This commit is contained in:
TristanAncelet 2021-08-30 15:27:17 -05:00
parent bb7ff08265
commit e05b072708

View File

@ -40,7 +40,7 @@ After creating a database and creating a few tables, I created a user and gave t
var2 INT AUTOINCREMENT, var2 INT AUTOINCREMENT,
); );
CREATE USER 'user'@'ip address';IDENTIFIED BY Password('password'); CREATE USER 'user'@'ip address' IDENTIFIED BY Password('password');
GRANT ALL PRIVILEGES ON 'test_database'.* TO 'user'@'ip address'; GRANT ALL PRIVILEGES ON 'test_database'.* TO 'user'@'ip address';