This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# convert the marker on an old pre-ddev v1.19 database to current usage | |
# See issue at https://github.com/drud/ddev/issues/4129 | |
# First argument should be the project name | |
# Second argument is the correct value you want, for example, | |
# mariadb_10.2 or mysql_8.0 | |
# Example: bash convert-old-db.sh fe-kuerschnersmart mariadb_10.2 | |
if [ $# != 2 ]; then |