9 lines
202 B
Bash
9 lines
202 B
Bash
#!/bin/sh
|
|
|
|
# Running the
|
|
mysql -u root -p \
|
|
"create user 'freechat_dev'@'localhost' identified by 'password';"
|
|
|
|
mysql -u root -p \
|
|
"GRANT ALL PRIVILEGES ON freechat.* TO 'freechat_dev'@'localhost';"
|