27 lines
694 B
C#
27 lines
694 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace IoTGateway.DataAccess.Migrations
|
|
{
|
|
public partial class attribut : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "DataSide",
|
|
table: "DeviceConfigs",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "DataSide",
|
|
table: "DeviceConfigs");
|
|
}
|
|
}
|
|
}
|