您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }