using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Lieb.Migrations { public partial class AddAlwaysSignUpWithMainAccount : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AlwaysSignUpWithMainAccount", table: "LiebUser", type: "INTEGER", nullable: false, defaultValue: false); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AlwaysSignUpWithMainAccount", table: "LiebUser"); } } }