using System; using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace AsbCloudDb.Migrations { public partial class Add_Fact_Trajectory_Table : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "t_trajectory_fact", columns: table => new { id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), id_user = table.Column(type: "integer", nullable: false, comment: "ID пользователя который внес/изменил запись"), id_well = table.Column(type: "integer", nullable: false, comment: "ID скважины"), update_date = table.Column(type: "timestamp with time zone", nullable: false, comment: "Дата загрузки траектории"), wellbore_depth = table.Column(type: "double precision", nullable: false, comment: "Глубина по стволу"), zenith_angle = table.Column(type: "double precision", nullable: false, comment: "Угол зенитный"), azimuth_geo = table.Column(type: "double precision", nullable: false, comment: "Азимут Географ."), azimuth_magnetic = table.Column(type: "double precision", nullable: false, comment: "Азимут Магнитный"), vertical_depth = table.Column(type: "double precision", nullable: false, comment: "Глубина вертикальная"), comment = table.Column(type: "text", nullable: true, comment: "Комментарии") }, constraints: table => { table.PrimaryKey("PK_t_trajectory_fact", x => x.id); table.ForeignKey( name: "FK_t_trajectory_fact_t_user_id_user", column: x => x.id_user, principalTable: "t_user", principalColumn: "id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_t_trajectory_fact_t_well_id_well", column: x => x.id_well, principalTable: "t_well", principalColumn: "id", onDelete: ReferentialAction.Cascade); }, comment: "Загрузка фактической траектории"); migrationBuilder.CreateIndex( name: "IX_t_trajectory_fact_id_user", table: "t_trajectory_fact", column: "id_user"); migrationBuilder.CreateIndex( name: "IX_t_trajectory_fact_id_well", table: "t_trajectory_fact", column: "id_well"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "t_trajectory_fact"); } } }