Hello,
I have created a new Migration_022.cs file to add employee schedule table. I have followed existing migration class file where added [Migration(22)] attribute and Up() and Down() function.
I changed DbVersion to 22 and created migrate.txt file which trigger migration(context) function call and execute migration code but somehow my new class is not getting executed. What am I missing?
var executor = new TaskExecutor(migrationContext);
executor.Execute();