We are running into an issue with migrations for 1...
# talk-hydra
e
We are running into an issue with migrations for 1.11.8 on PostgreSQL (RDS). After running the migrations successfully, when booting the service we receive the following message:
Instance is not yet ready because migrations have not yet been fully applied.
In the first array, we see that the last migration is marked as Pending
{State:Pending Version:20220328111500000000 Name:support_any_subject_trusts}
But in the following status array we see it is still pending but the output is unexpected:
{State:Pending Version:-18446744073709551615 Name:support_any_subject_trusts}
. I have verified the column changes from that migration have been applied to the table. Any suggestion on where to go from here?
Looking at the code, the check for Applied is looking for the migration ID in the schema_migrations table. We have verified that the migration ID is present in the table.
Update: This was a database connection issue on our end.
👍 1