59 lines
2.0 KiB
C#
59 lines
2.0 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
namespace Hcs.WebApp.Data.Hcs.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddOperation : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Name",
|
|
table: "Registries",
|
|
type: "nvarchar(max)",
|
|
nullable: false,
|
|
defaultValue: "");
|
|
|
|
migrationBuilder.AddColumn<DateTime>(
|
|
name: "UpdatedAt",
|
|
table: "Registries",
|
|
type: "datetime2",
|
|
nullable: false,
|
|
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified));
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Operations",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "nvarchar(450)", nullable: false),
|
|
Type = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
InitiatorId = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
StartedAt = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
EndedAt = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
MessageGuid = table.Column<string>(type: "nvarchar(max)", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Operations", x => x.Id);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Operations");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "Name",
|
|
table: "Registries");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "UpdatedAt",
|
|
table: "Registries");
|
|
}
|
|
}
|
|
}
|