using Microsoft.EntityFrameworkCore.Migrations; namespace API.Data.Migrations { public partial class VolumeNumberRefactor : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Number", table: "Volume", type: "INTEGER", nullable: false, defaultValue: 0, oldClrType: typeof(string), oldType: "TEXT", oldNullable: true); migrationBuilder.AddColumn( name: "Name", table: "Volume", type: "TEXT", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Name", table: "Volume"); migrationBuilder.AlterColumn( name: "Number", table: "Volume", type: "TEXT", nullable: true, oldClrType: typeof(int), oldType: "INTEGER"); } } }