I’ve been using Entity Frameworks for some time with my app. And I just noticed, there is no MigrationsHistory table. I looked at the files in core/Migrations and none of them create a MigrationsHistory table.
Why is it missing and how do I get it?
And how do I populate it with the correct values for the 3 (so far) migrations I have created?
- The SQL script
script-migration
created does try to insert a row into__EFMigrationsHistory
. This fails as the table does not exist.