The console says ‘Relation “acronym” does not exist’.
Turns out I had a typo in the schema name in the Migration struct. It should’ve been ‘acronym’, not ‘acronyms’. I corrected the typo and ran the app again. But, still the issue lasts.
I suspect it’s because
Migrations only run once; once they have run in a database, they are never executed again. It’s important to remember this as Fluent won’t attempt to recreate a table if you change the migration.
If it really is this case, what to do now?