using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Persistence.Database.Postgres.Migrations { /// <inheritdoc /> public partial class Add_ChangeLog : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "ChangeLog", columns: table => new { Id = table.Column<Guid>(type: "uuid", nullable: false), IdDiscriminator = table.Column<Guid>(type: "uuid", nullable: false), IdAuthor = table.Column<Guid>(type: "uuid", nullable: false), IdEditor = table.Column<Guid>(type: "uuid", nullable: true), Creation = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false), Obsolete = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true), IdNext = table.Column<Guid>(type: "uuid", nullable: true), DepthStart = table.Column<double>(type: "double precision", nullable: false), DepthEnd = table.Column<double>(type: "double precision", nullable: false), IdSection = table.Column<Guid>(type: "uuid", nullable: false), Value = table.Column<IDictionary<string, object>>(type: "jsonb", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ChangeLog", x => x.Id); }); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ChangeLog"); } } }