You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: simplify migrations when building postgres db image (ietf-tools#4889)
* chore: remove the effectively unused DATABASE_TEST_OPTIONS setting
* fix: simplify default settings_local so that db-include-fix.py is not needed in CI
* fix: simplify migrations in db-pg-migrate.sh
# We may be starting with a post 9.0.0 deploy dump, so run the migrations again before switching engines to catch any pre-postgres migrations that may be merged in from main post 9.0.0 (and any that are specific to feat/postgres that need to run before we switch engines)
48
+
# The mysql database is always freshly build container from the
49
+
# image build of last-night's dump when this script is run
50
+
# The first run of migrations will run anything merged from main that
51
+
# that hasn't been released, and the few pre-engine-shift migrations
52
+
# that the feat/postgres branch adds. It is guaranteed to fail at
53
+
# utils.migrations.0004_pause_to_change_database_engines (where it
54
+
# fails on purpose, hence the `|| true` so we may proceed
0 commit comments