using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace FlexJobApi.Database.Migrations.Migrations
{
///
public partial class UpdateRole0805 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "DataPower",
table: "Role",
type: "int",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn(
name: "Remark",
table: "Role",
type: "nvarchar(max)",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DataPower",
table: "Role");
migrationBuilder.DropColumn(
name: "Remark",
table: "Role");
}
}
}