using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace Persistence.Database.Postgres.Migrations { /// public partial class InitialCreate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterDatabase() .Annotation("Npgsql:PostgresExtension:adminpack", ",,"); migrationBuilder.CreateTable( name: "DataSaub", columns: table => new { id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), timestamp = table.Column(type: "integer", nullable: false), mode = table.Column(type: "integer", nullable: true), user = table.Column(type: "text", nullable: true), wellDepth = table.Column(type: "double precision", nullable: true), bitDepth = table.Column(type: "double precision", nullable: true), blockPosition = table.Column(type: "double precision", nullable: true), blockSpeed = table.Column(type: "double precision", nullable: true), pressure = table.Column(type: "double precision", nullable: true), axialLoad = table.Column(type: "double precision", nullable: true), hookWeight = table.Column(type: "double precision", nullable: true), rotorTorque = table.Column(type: "double precision", nullable: true), rotorSpeed = table.Column(type: "double precision", nullable: true), flow = table.Column(type: "double precision", nullable: true), mseState = table.Column(type: "smallint", nullable: false), idFeedRegulator = table.Column(type: "integer", nullable: false), mse = table.Column(type: "double precision", nullable: true), pump0Flow = table.Column(type: "double precision", nullable: true), pump1Flow = table.Column(type: "double precision", nullable: true), pump2Flow = table.Column(type: "double precision", nullable: true) }, constraints: table => { table.PrimaryKey("PK_DataSaub", x => x.id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "DataSaub"); } } }