This commit is contained in:
Julio Jordán 2022-05-19 14:57:35 +02:00 committed by GitHub
parent 689e6a5e69
commit f142dce3f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ mysqldump -u Username -p dbNameYouWant > databasename_backup.sql
### Restore from backup SQL File
```bash
mysql - u Username -p dbNameYouWant < databasename_backup.sql;
mysql -u Username -p dbNameYouWant < databasename_backup.sql;
```
### Repair Tables After Unclean Shutdown