| 1234567891011121314151617181920212223242526272829 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Content.Server.Database.Migrations.Postgres
- {
- /// <inheritdoc />
- public partial class BanAutoDelete : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<bool>(
- name: "auto_delete",
- table: "server_ban",
- type: "boolean",
- nullable: false,
- defaultValue: false);
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "auto_delete",
- table: "server_ban");
- }
- }
- }
|