เพิ่มฟิล remark2

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-09-10 15:13:26 +07:00
parent a898de8ab2
commit edc9bf053e
10 changed files with 1135 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
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");
}
}
}