using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace agologum_api.Migrations { /// public partial class AddUserAuthFields : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PasswordHash", table: "Users", type: "text", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PasswordHash", table: "Users"); } } }