44 lines
1.9 KiB
C#
44 lines
1.9 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace OnProfNext.Server.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class InitialCreate : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "int", nullable: false)
|
|
.Annotation("SqlServer:Identity", "1, 1"),
|
|
Username = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false),
|
|
Email = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false),
|
|
PasswordHash = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: false),
|
|
FirstName = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false),
|
|
LastName = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false),
|
|
MandantId = table.Column<int>(type: "int", nullable: false, defaultValue: 1),
|
|
IsActive = table.Column<bool>(type: "bit", nullable: false, defaultValue: true),
|
|
CreatedAt = table.Column<DateTime>(type: "datetime2", nullable: false, defaultValueSql: "SYSDATETIME()"),
|
|
UpdatedAt = table.Column<DateTime>(type: "datetime2", nullable: false, defaultValueSql: "SYSDATETIME()")
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Id);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Users");
|
|
}
|
|
}
|
|
}
|