| 1234567891011121314151617181920212223242526 |
- 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");
- }
- }
- }
|