51 lines
2.4 KiB
C#
51 lines
2.4 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace WebVentaCoche.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Users : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "nvarchar(450)", nullable: false),
|
|
Name = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
Surname = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
UserType = table.Column<int>(type: "int", nullable: false),
|
|
UserName = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
NormalizedUserName = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
Email = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
NormalizedEmail = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
EmailConfirmed = table.Column<bool>(type: "bit", nullable: false),
|
|
PasswordHash = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
SecurityStamp = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
PhoneNumber = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
PhoneNumberConfirmed = table.Column<bool>(type: "bit", nullable: false),
|
|
TwoFactorEnabled = table.Column<bool>(type: "bit", nullable: false),
|
|
LockoutEnd = table.Column<DateTimeOffset>(type: "datetimeoffset", nullable: true),
|
|
LockoutEnabled = table.Column<bool>(type: "bit", nullable: false),
|
|
AccessFailedCount = table.Column<int>(type: "int", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Id);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Users");
|
|
}
|
|
}
|
|
}
|