20211121123543_AdminLogsImpact.cs 710 B

1234567891011121314151617181920212223242526
  1. using Microsoft.EntityFrameworkCore.Migrations;
  2. #nullable disable
  3. namespace Content.Server.Database.Migrations.Postgres
  4. {
  5. public partial class AdminLogsImpact : Migration
  6. {
  7. protected override void Up(MigrationBuilder migrationBuilder)
  8. {
  9. migrationBuilder.AddColumn<short>(
  10. name: "impact",
  11. table: "admin_log",
  12. type: "smallint",
  13. nullable: false,
  14. defaultValue: (short)0);
  15. }
  16. protected override void Down(MigrationBuilder migrationBuilder)
  17. {
  18. migrationBuilder.DropColumn(
  19. name: "impact",
  20. table: "admin_log");
  21. }
  22. }
  23. }