| 12345678910111213141516171819202122232425 |
- using Microsoft.EntityFrameworkCore.Migrations;
-
- #nullable disable
-
- namespace Diligent.WebAPI.Data.Migrations
- {
- public partial class AddedPasswordResetToken : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "PasswordResetToken",
- table: "AspNetUsers",
- type: "nvarchar(max)",
- nullable: true);
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "PasswordResetToken",
- table: "AspNetUsers");
- }
- }
- }
|