using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BackendPIA.Migrations { /// public partial class AddCurrentTokenToUser : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CurrentToken", table: "AspNetUsers", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CurrentToken", table: "AspNetUsers"); } } }