using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Nuuru.Server.Migrations.PostgreSQL { /// public partial class AddAutoUpdateSettings : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AutoNavigateNextPage", table: "UserSettings", type: "boolean", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "AutoUpdateEnabled", table: "UserSettings", type: "boolean", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AutoNavigateNextPage", table: "UserSettings"); migrationBuilder.DropColumn( name: "AutoUpdateEnabled", table: "UserSettings"); } } }