"after" in migration configuration should use VCS history if VCS enabled #298
Replies: 2 comments 2 replies
-
As it stands, we just use this make target, which works well enough: # Only lint migrations after 172, since we can't change old ones, and
# 172-forward lint without errors currently.
LINTED_MIGRATIONS := $(shell fd . 'data/db/proxy/migrations' \
--extension sql \
--max-depth 1 \
--format {/} \
--exec bash -c '[[ "{/}" > "0172" ]] && echo {}')
# Lint db migrations. Note that the DB must be running for this check.
db-lint: .make/db-lint
.PHONY: db-lint
.make/db-lint: $(LINTED_MIGRATIONS) | .make
if [[ "$?" ]]; then
postgrestools check $?
fi
touch .make/db-lint |
Beta Was this translation helpful? Give feedback.
-
Thanks for the feedback! Did you see this part in the docs?
Stil, I will test this on the weekend, because I am quite sure we don't care about timestamps and simply parse the number. So maybe there is just a bug here and your case should work. |
Beta Was this translation helpful? Give feedback.
-
Right now, it seems like the
after
configuration for migrations is closely coupled with a file format used by certain ORMs (e.g. prisma).In our project, the files are named like
0001_whatever.sql
, with no timestamp.If
after
is going to refer to a timestamp rather than a migration number, it would be nice to do it in a more generalized way. The first thing that comes to mind is using git to determine the file's last modification time, if VCS integration is enabled.Alternatively, a configuration option to use migration numbers would be nice, which could potentially take some kind of DSL to convert filenames to migration numbers (perhaps a sed command).
Beta Was this translation helpful? Give feedback.
All reactions