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