20210723111848_7-23-1.cs 659 B

123456789101112131415161718192021222324
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. namespace WCS.Service.Migrations
  3. {
  4. public partial class _7231 : Migration
  5. {
  6. protected override void Up(MigrationBuilder migrationBuilder)
  7. {
  8. migrationBuilder.AddColumn<string>(
  9. name: "SCSTATION",
  10. table: "WCS_TASK",
  11. type: "nvarchar(20)",
  12. maxLength: 20,
  13. nullable: true);
  14. }
  15. protected override void Down(MigrationBuilder migrationBuilder)
  16. {
  17. migrationBuilder.DropColumn(
  18. name: "SCSTATION",
  19. table: "WCS_TASK");
  20. }
  21. }
  22. }