using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Data.Migrations
{
///
public partial class AvgReadingTimeFloat : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "AvgHoursToRead",
table: "Volume",
type: "REAL",
nullable: false,
oldClrType: typeof(int),
oldType: "INTEGER");
migrationBuilder.AlterColumn(
name: "AvgHoursToRead",
table: "Series",
type: "REAL",
nullable: false,
oldClrType: typeof(int),
oldType: "INTEGER");
migrationBuilder.AlterColumn(
name: "AvgHoursToRead",
table: "Chapter",
type: "REAL",
nullable: false,
oldClrType: typeof(int),
oldType: "INTEGER");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "AvgHoursToRead",
table: "Volume",
type: "INTEGER",
nullable: false,
oldClrType: typeof(float),
oldType: "REAL");
migrationBuilder.AlterColumn(
name: "AvgHoursToRead",
table: "Series",
type: "INTEGER",
nullable: false,
oldClrType: typeof(float),
oldType: "REAL");
migrationBuilder.AlterColumn(
name: "AvgHoursToRead",
table: "Chapter",
type: "INTEGER",
nullable: false,
oldClrType: typeof(float),
oldType: "REAL");
}
}
}