forked from EllieBotDevs/elliebot
26 lines
663 B
C#
26 lines
663 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace EllieBot.Migrations.Mysql
|
|||
|
{
|
|||
|
public partial class logwarns : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<ulong>(
|
|||
|
name: "logwarnsid",
|
|||
|
table: "logsettings",
|
|||
|
type: "bigint unsigned",
|
|||
|
nullable: true);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "logwarnsid",
|
|||
|
table: "logsettings");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|