Files
Bewerbungs-Portfolio/RazorPagesMovie/Migrations/20260818121135_AddAdminUserAndContactMessage.cs
T
2026-08-18 14:58:08 +02:00

58 lines
2.3 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace RazorPagesMovie.Migrations
{
/// <inheritdoc />
public partial class AddAdminUserAndContactMessage : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "AdminUser",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Username = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false),
PasswordHash = table.Column<string>(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_AdminUser", x => x.Id);
});
migrationBuilder.CreateTable(
name: "ContactMessage",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Name = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: false),
Email = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false),
Phone = table.Column<string>(type: "nvarchar(30)", maxLength: 30, nullable: true),
Subject = table.Column<string>(type: "nvarchar(150)", maxLength: 150, nullable: true),
Message = table.Column<string>(type: "nvarchar(4000)", maxLength: 4000, nullable: false),
SentAt = table.Column<DateTime>(type: "datetime2", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_ContactMessage", x => x.Id);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "AdminUser");
migrationBuilder.DropTable(
name: "ContactMessage");
}
}
}