using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PowderCoating.Infrastructure.Migrations
{
///
public partial class AddReleaseNotes : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "ReleaseNotes",
columns: table => new
{
Id = table.Column(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
Version = table.Column(type: "nvarchar(max)", nullable: false),
Title = table.Column(type: "nvarchar(max)", nullable: false),
Body = table.Column(type: "nvarchar(max)", nullable: false),
Tag = table.Column(type: "nvarchar(max)", nullable: false),
IsPublished = table.Column(type: "bit", nullable: false),
ReleasedAt = table.Column(type: "datetime2", nullable: false),
CreatedAt = table.Column(type: "datetime2", nullable: false),
UpdatedAt = table.Column(type: "datetime2", nullable: true),
CreatedByUserId = table.Column(type: "nvarchar(max)", nullable: true),
CreatedByUserName = table.Column(type: "nvarchar(max)", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_ReleaseNotes", x => x.Id);
});
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(name: "ReleaseNotes");
}
}
}