38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace DongfangHydro.Dashboard.Api.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AllowRepeatedWorkOrderCodes : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_ProductionOrders_Code",
|
|
table: "ProductionOrders");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ProductionOrders_Code",
|
|
table: "ProductionOrders",
|
|
column: "Code");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_ProductionOrders_Code",
|
|
table: "ProductionOrders");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_ProductionOrders_Code",
|
|
table: "ProductionOrders",
|
|
column: "Code",
|
|
unique: true);
|
|
}
|
|
}
|
|
}
|