mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 09:46:32 +01:00
Correct typo in db creation string
This commit is contained in:
parent
3b42228de7
commit
2dd47fd01d
1 changed files with 2 additions and 2 deletions
|
|
@ -15,8 +15,8 @@ env:
|
|||
- TESTING_DB=mysql
|
||||
|
||||
before_install:
|
||||
- psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;'"
|
||||
- mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE evennia; ALTER DATABASE `evennia` CHARACTER SET utf8; GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;" -U postgres
|
||||
- psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;"
|
||||
- mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE evennia; ALTER DATABASE `evennia` CHARACTER SET utf8; GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;"
|
||||
|
||||
install:
|
||||
- pip install psycopg2-binary
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue