123456789101112131415161718192021222324252627282930313233 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace WCS.Service.Migrations
- {
- public partial class _21041404 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.RenameColumn(
- name: "Type",
- table: "WCS_PLC",
- newName: "TYPE");
- migrationBuilder.RenameColumn(
- name: "Model",
- table: "WCS_PLC",
- newName: "MODEL");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.RenameColumn(
- name: "TYPE",
- table: "WCS_PLC",
- newName: "Type");
- migrationBuilder.RenameColumn(
- name: "MODEL",
- table: "WCS_PLC",
- newName: "Model");
- }
- }
- }
|