49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace ElectronicsShopDataBaseImplement.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class AddMessages : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "Messages",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
MessageID = table.Column<string>(type: "nvarchar(450)", nullable: false),
|
|||
|
ClientID = table.Column<int>(type: "int", nullable: true),
|
|||
|
SenderName = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|||
|
DateDelivery = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|||
|
Subject = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|||
|
Body = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_Messages", x => x.MessageID);
|
|||
|
table.ForeignKey(
|
|||
|
name: "FK_Messages_Clients_ClientID",
|
|||
|
column: x => x.ClientID,
|
|||
|
principalTable: "Clients",
|
|||
|
principalColumn: "ID");
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_Messages_ClientID",
|
|||
|
table: "Messages",
|
|||
|
column: "ClientID");
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "Messages");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|