1234567891011121314151617181920212223242526272829 |
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace WCS.Service.Migrations
- {
- public partial class _75 : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<int>(
- name: "GOODSCODE",
- table: "WCS_STATION520",
- type: "int",
- nullable: false,
- oldClrType: typeof(short),
- oldType: "smallint");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<short>(
- name: "GOODSCODE",
- table: "WCS_STATION520",
- type: "smallint",
- nullable: false,
- oldClrType: typeof(int),
- oldType: "int");
- }
- }
- }
|