27 lines
710 B
C#
27 lines
710 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Content.Server.Database.Migrations.Postgres
|
|
{
|
|
public partial class AdminLogsImpact : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<short>(
|
|
name: "impact",
|
|
table: "admin_log",
|
|
type: "smallint",
|
|
nullable: false,
|
|
defaultValue: (short)0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "impact",
|
|
table: "admin_log");
|
|
}
|
|
}
|
|
}
|