24 lines
647 B
C#
24 lines
647 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace tb320eva.Migrations
|
|
{
|
|
public partial class AddRemark2 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "remark2",
|
|
table: "eva_limit_frame_group",
|
|
maxLength: 4000,
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "remark2",
|
|
table: "eva_limit_frame_group");
|
|
}
|
|
}
|
|
}
|