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