using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PizzeriaDatabaseImplement.Migrations
{
///
public partial class AddMails : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Messages",
columns: table => new
{
MessageId = table.Column(type: "text", nullable: false),
ClientId = table.Column(type: "integer", nullable: true),
SenderName = table.Column(type: "text", nullable: false),
DateDelivery = table.Column(type: "timestamp with time zone", nullable: false),
Subject = table.Column(type: "text", nullable: false),
Body = table.Column(type: "text", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Messages", x => x.MessageId);
});
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Messages");
}
}
}