9 lines
201 B
Bash
9 lines
201 B
Bash
#!/bin/sh
|
|
|
|
# Running the
|
|
mysql -u root -p \
|
|
"CREATE USER 'freechat_dev'@'locahost' IDENTIFIED BY 'password';"
|
|
|
|
mysql -u root -p \
|
|
"GRANT ALL PRIVILEGES ON freechat.* TO 'freechat_dev'@'localhost';"
|