iotgateway/IoTGateway.DataAccess/Migrations/20220124063657_platforms.cs
2022-01-24 23:10:56 +08:00

26 lines
682 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IoTGateway.DataAccess.Migrations
{
public partial class platforms : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "Disperse",
table: "SystemConfig",
newName: "IoTPlatformType");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "IoTPlatformType",
table: "SystemConfig",
newName: "Disperse");
}
}
}