using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace API.Data.Migrations { /// public partial class VolumeMinMaxNumbers : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "MaxNumber", table: "Volume", type: "REAL", nullable: false, defaultValue: 0f); migrationBuilder.AddColumn( name: "MinNumber", table: "Volume", type: "REAL", nullable: false, defaultValue: 0f); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "MaxNumber", table: "Volume"); migrationBuilder.DropColumn( name: "MinNumber", table: "Volume"); } } }