-
Notifications
You must be signed in to change notification settings - Fork 894
feat: Add migration fixer script (for branches) #6466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
feat: Add migration fixer script (for branches)
- Loading branch information
commit a33f9a3219b137efc35b7712f5dbe232b24fdb17
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}") | ||
|
||
list_migrations() { | ||
branch=$1 | ||
git ls-tree -r --name-only "${branch}" -- . | grep -E '[0-9]{6}.*' | sort -n | ||
} | ||
|
||
main() { | ||
cd "${SCRIPT_DIR}" | ||
|
||
echo "Fetching origin/main..." | ||
git fetch -u origin main | ||
|
||
curr_num=$( | ||
set -e | ||
list_migrations origin/main | grep '^[0-9]' | tail -n1 | ||
) | ||
echo "Last migration (main): ${curr_num}" | ||
next_num=$(("1${curr_num:0:6}" - 1000000 + 1)) | ||
curr_num=$(printf "%06d" "${next_num}") | ||
echo "Next migration number: ${curr_num}" | ||
|
||
main_files="$( | ||
set -e | ||
list_migrations origin/main | ||
)" | ||
head_files="$( | ||
set -e | ||
list_migrations HEAD | ||
)" | ||
|
||
declare -A prefix_map=() | ||
declare -a git_add_files=() | ||
|
||
# Renumber migrations part of this branch (as compared to main) | ||
diff_files="$(diff -u <(echo "${main_files}") <(echo "${head_files}") | sed -E -ne 's;^\+(0.*);\1;p' | sort -n || true)" | ||
if [[ -z "${diff_files}" ]]; then | ||
echo "No migrations to rename, exiting." | ||
return | ||
fi | ||
while read -r file; do | ||
old_file="${file}" | ||
dir=$(dirname "${file}") | ||
file=$(basename "${file}") | ||
num="${file:0:6}" | ||
set +u | ||
new_num="${prefix_map["${num}"]}" | ||
set -u | ||
if [[ -z "${new_num}" ]]; then | ||
new_num="${curr_num}" | ||
prefix_map["${num}"]="${new_num}" | ||
next_num=$((next_num + 1)) | ||
curr_num=$(printf "%06d" "${next_num}") | ||
fi | ||
name="${file:7:-4}" | ||
new_file="${new_num}_${name}.sql" | ||
echo "Renaming ${old_file} to ${new_file}" | ||
mv "${old_file}" "${new_file}" | ||
git_add_files+=("${new_file}" "${old_file}") | ||
done <<<"${diff_files}" | ||
|
||
# Renumber fixtures if there's a matching migration in this branch (as compared to main). | ||
diff_files="$(diff -u <(echo "${main_files}") <(echo "${head_files}") | sed -E -ne 's;^\+(testdata/[^/]*/0.*);\1;p' | sort -n || true)" | ||
if [[ -z "${diff_files}" ]]; then | ||
echo "No testdata fixtures to rename, skipping." | ||
return | ||
fi | ||
while read -r file; do | ||
old_file="${file}" | ||
dir=$(dirname "${file}") | ||
file=$(basename "${file}") | ||
num="${file:0:6}" | ||
set +u | ||
new_num="${prefix_map["${num}"]}" | ||
set -u | ||
if [[ -z "${new_num}" ]]; then | ||
echo "Skipping ${old_file}, no matching migration in ${SCRIPT_DIR}" | ||
continue | ||
fi | ||
name="${file:7:-4}" | ||
new_file="${dir}/${new_num}_${name}.sql" | ||
echo "Renaming ${old_file} to ${new_file}" | ||
mv "${old_file}" "${new_file}" | ||
git_add_files+=("${new_file}" "${old_file}") | ||
done <<<"${diff_files}" | ||
|
||
git add "${git_add_files[@]}" | ||
git status | ||
echo "Run 'git commit' to commit the changes." | ||
} | ||
|
||
(main "$@") |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.