using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Persistence.Database.Postgres.Migrations { /// public partial class TechMessageMigration : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Created", table: "Setpoint", type: "timestamp with time zone", nullable: false, comment: "Дата создания уставки", oldClrType: typeof(DateTimeOffset), oldType: "timestamp with time zone", oldComment: "Дата изменения уставки"); migrationBuilder.CreateTable( name: "TechMessage", columns: table => new { EventId = table.Column(type: "uuid", nullable: false, comment: "Id события"), ImportantId = table.Column(type: "integer", nullable: false, comment: "Id Категории важности"), OccurrenceDate = table.Column(type: "timestamp with time zone", nullable: false, comment: "Дата возникновения"), Depth = table.Column(type: "double precision", nullable: true, comment: "Глубина забоя"), MessageText = table.Column(type: "varchar(512)", nullable: true, comment: "Текст сообщения"), AutoDrillingSystem = table.Column(type: "varchar(256)", nullable: true, comment: "Система автобурения, к которой относится сообщение"), UserId = table.Column(type: "uuid", nullable: false, comment: "Id пользователя за пультом бурильщика") }, constraints: table => { table.PrimaryKey("PK_TechMessage", x => x.EventId); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "TechMessage"); migrationBuilder.AlterColumn( name: "Created", table: "Setpoint", type: "timestamp with time zone", nullable: false, comment: "Дата изменения уставки", oldClrType: typeof(DateTimeOffset), oldType: "timestamp with time zone", oldComment: "Дата создания уставки"); } } }