20210414020202_21041404.cs 901 B

123456789101112131415161718192021222324252627282930313233
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace WCS.Service.Migrations
  3. {
  4. public partial class _21041404 : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.RenameColumn(
  9. name: "Type",
  10. table: "WCS_PLC",
  11. newName: "TYPE");
  12. migrationBuilder.RenameColumn(
  13. name: "Model",
  14. table: "WCS_PLC",
  15. newName: "MODEL");
  16. }
  17. protected override void Down(MigrationBuilder migrationBuilder)
  18. {
  19. migrationBuilder.RenameColumn(
  20. name: "TYPE",
  21. table: "WCS_PLC",
  22. newName: "Type");
  23. migrationBuilder.RenameColumn(
  24. name: "MODEL",
  25. table: "WCS_PLC",
  26. newName: "Model");
  27. }
  28. }
  29. }