using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Foxnouns.Backend.Database.Migrations { /// <inheritdoc /> [DbContext(typeof(DatabaseContext))] [Migration("20240528145744_AddListHidden")] public partial class AddListHidden : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<bool>( name: "list_hidden", table: "users", type: "boolean", nullable: false, defaultValue: false ); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn(name: "list_hidden", table: "users"); } } }