33 lines
952 B
C#
33 lines
952 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
#nullable disable
|
|||
|
|
|
|||
|
|
namespace GestorFacturas.API.Migrations
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
public partial class UpdateAdminPassword : Migration
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.UpdateData(
|
|||
|
|
table: "Usuarios",
|
|||
|
|
keyColumn: "Id",
|
|||
|
|
keyValue: 1,
|
|||
|
|
column: "PasswordHash",
|
|||
|
|
value: "$2a$11$l5UnZIE8bVWSUhYorVqlW.f0qgvK2zsD8aYDyTRXKjtFwwdiAfAvW");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.UpdateData(
|
|||
|
|
table: "Usuarios",
|
|||
|
|
keyColumn: "Id",
|
|||
|
|
keyValue: 1,
|
|||
|
|
column: "PasswordHash",
|
|||
|
|
value: "$2a$11$Z5.Cg.y.u.e.t.c.h.a.n.g.e.m.e");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|