mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-02 03:38:01 +08:00
26 lines
682 B
C#
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");
|
|
}
|
|
}
|
|
}
|