using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace RobotApp.Data.Migrations
{
///
public partial class UpdateVDA5050St : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "VDA5050_TopicPrefix",
table: "RobotVDA5050Config",
type: "nvarchar(64)",
maxLength: 64,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "VDA5050_TopicPrefix",
table: "RobotVDA5050Config");
}
}
}