mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 09:46:32 +01:00
Further changes to mysql create statement
This commit is contained in:
parent
7b93c9e832
commit
a075968291
1 changed files with 2 additions and 3 deletions
|
|
@ -19,10 +19,9 @@ before_install:
|
|||
- psql -U postgres -c "CREATE DATABASE evennia;"
|
||||
- psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password';"
|
||||
- psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;"
|
||||
- mysql -u root -e "CREATE DATABASE evennia;"
|
||||
- mysql -u root -e "CREATE DATABASE evennia CHARACTER SET utf8;"
|
||||
- mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password';"
|
||||
- mysql -u root -e "ALTER DATABASE evennia CHARACTER SET utf8;"
|
||||
- mysql --database=evennia -u root -e "GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;"
|
||||
- mysql -u root -e "GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost' IDENTIFIED BY 'password';"
|
||||
|
||||
install:
|
||||
- pip install psycopg2-binary
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue