1
0
mirror of https://github.com/tchapi/davis.git synced 2025-04-04 12:42:49 +02:00

Fix README markdown

This commit is contained in:
tchapi 2019-12-02 13:06:22 +01:00
parent 69e85ac010
commit 1ff20d3b23

@ -87,15 +87,15 @@ If you're migrating from Baïkal, then you will likely want to do the following
1. Get a backup of your data (without the `CREATE` statements, but with complete `INSERT` statements):
mysqldump -u root -p --no-create-info --complete-insert baikal > baikal_to_davis.sql # baikal is the actual name of your database
`mysqldump -u root -p --no-create-info --complete-insert baikal > baikal_to_davis.sql # baikal is the actual name of your database`
2. Create a new database for Davis (let's name it `davis`) and run the migrations :
bin/console doctrine:migrations:migrate
`bin/console doctrine:migrations:migrate`
3. Reimport the data back:
mysql -uroot -p davis < baikal_to_davis.sql
`mysql -uroot -p davis < baikal_to_davis.sql`
# Access / Webserver