Fix argument dashes

This commit is contained in:
2023-06-27 14:30:09 +02:00
parent eb626db9c2
commit 34050c8ce0
2 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ func checkDBVersion(backend string, db *sql.DB) error {
}
if v < Version {
return fmt.Errorf("unsupported database version %d, need %d.\nPlease backup your database file and run cc-backend --migrate-db", v, Version)
return fmt.Errorf("unsupported database version %d, need %d.\nPlease backup your database file and run cc-backend -migrate-db", v, Version)
}
if v > Version {