using Microsoft.EntityFrameworkCore.Migrations; namespace AsbCloudDb.Migrations { public partial class AddWellDepthToMessage : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "well_depth", table: "t_telemetry_message", type: "double precision", nullable: false, defaultValue: 0.0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "well_depth", table: "t_telemetry_message"); } } }