using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ConfectioneryDataBaseImplement.Migrations
{
///
public partial class AddMessageInfos : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "MessageInfos",
columns: table => new
{
MessageId = table.Column(type: "nvarchar(450)", nullable: false),
ClientId = table.Column(type: "int", nullable: true),
SenderName = table.Column(type: "nvarchar(max)", nullable: false),
DateDelivery = table.Column(type: "datetime2", nullable: false),
Subject = table.Column(type: "nvarchar(max)", nullable: false),
Body = table.Column(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_MessageInfos", x => x.MessageId);
});
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "MessageInfos");
}
}
}