forked from ddrilling/AsbCloudServer
30 lines
801 B
C#
30 lines
801 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace AsbCloudDb.Migrations
|
|
{
|
|
public partial class SpellPermissions : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "t_permission",
|
|
keyColumn: "id",
|
|
keyValue: 223,
|
|
column: "name",
|
|
value: "RequestTracker.get");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "t_permission",
|
|
keyColumn: "id",
|
|
keyValue: 223,
|
|
column: "name",
|
|
value: "RequerstTracker.get");
|
|
}
|
|
}
|
|
}
|