123456789101112131415161718192021222324 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace WCS.Service.Migrations
- {
- public partial class _7231 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "SCSTATION",
- table: "WCS_TASK",
- type: "nvarchar(20)",
- maxLength: 20,
- nullable: true);
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "SCSTATION",
- table: "WCS_TASK");
- }
- }
- }
|