Created
February 1, 2020 19:11
-
-
Save chrisguitarguy/495aa06453df13772120d28e07a03bbc to your computer and use it in GitHub Desktop.
Upgrade doctrine migrations to 2.0
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
#!/usr/bin/env bash | |
if [ "$#" != 1 ]; then | |
echo "Usage: $0 {migrationsDirectory}" >&2 | |
exit 1 | |
fi | |
find "$1" -type f -name '*.php' -exec sed -i '' 's/Doctrine\\DBAL\\Migrations\\AbstractMigration/Doctrine\\Migrations\\AbstractMigration/' {} \; | |
find "$1" -type f -name '*.php' -exec sed -i '' 's/function up(Schema \$schema)$/function up(Schema $schema) : void/' {} \; | |
find "$1" -type f -name '*.php' -exec sed -i '' 's/function down(Schema \$schema)$/function down(Schema $schema) : void/' {} \; | |
find "$1" -type f -name '*.php' -exec sed -i '' 's/function preUp(Schema \$schema)$/function preUp(Schema $schema) : void/' {} \; | |
find "$1" -type f -name '*.php' -exec sed -i '' 's/function preDown(Schema \$schema)$/function preDown(Schema $schema) : void/' {} \; | |
find "$1" -type f -name '*.php' -exec sed -i '' 's/function getDescription()$/function getDescription() : string/' {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment