-1
With the command add-migration
created a migration, so is created a class with two functions.
protected override void Up(MigrationBuilder migrationBuilder){...}
protected override void Down(MigrationBuilder migrationBuilder){...}
I know that to execute the Up
use the command update-database
The question is how do I perform the command Down
to undo the change that was made in the table.