You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20200611112655_006.cs 636B

1234567891011121314151617181920212223
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace ProRestaurant.Migrations
  3. {
  4. public partial class _006 : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.RenameColumn(
  9. name: "Provice",
  10. table: "UserAddresses",
  11. newName: "Province");
  12. }
  13. protected override void Down(MigrationBuilder migrationBuilder)
  14. {
  15. migrationBuilder.RenameColumn(
  16. name: "Province",
  17. table: "UserAddresses",
  18. newName: "Provice");
  19. }
  20. }
  21. }