123456789101112131415161718192021222324 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace WCS.Service.Migrations
- {
- public partial class _9282 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "HEIGHT",
- table: "WCS_STATION521");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<short>(
- name: "HEIGHT",
- table: "WCS_STATION521",
- type: "smallint",
- nullable: false,
- defaultValue: (short)0);
- }
- }
- }
|