using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace IRaCIS.Core.Infra.EFCore.Migrations { /// public partial class CircleRadius10 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CircleRadius", table: "ReadingQuestionCriterionTrial", type: "decimal(18,2)", precision: 18, scale: 2, nullable: false, defaultValue: 10m, oldClrType: typeof(decimal), oldType: "decimal(18,2)", oldPrecision: 18, oldScale: 2, oldNullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CircleRadius", table: "ReadingQuestionCriterionTrial", type: "decimal(18,2)", precision: 18, scale: 2, nullable: true, oldClrType: typeof(decimal), oldType: "decimal(18,2)", oldPrecision: 18, oldScale: 2); } } }