1234567891011121314151617181920212223 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace WCS.Service.Migrations
- {
- public partial class _21041401 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.RenameColumn(
- name: "DATATYPE",
- table: "WCS_DATABLOCK",
- newName: "PROTOCOL");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.RenameColumn(
- name: "PROTOCOL",
- table: "WCS_DATABLOCK",
- newName: "DATATYPE");
- }
- }
- }
|