forked from EllieBotDevs/elliebot
25 lines
663 B
C#
25 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");
|
|
}
|
|
}
|
|
}
|