using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace VOL.Core.Migrations { public partial class init016 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Standing", table: "I_SportsTestData", type: "float", nullable: false, oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "Speedeight", table: "I_SportsTestData", type: "float", nullable: false, oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "Kilometer", table: "I_SportsTestData", type: "float", nullable: false, oldClrType: typeof(int), oldType: "int"); migrationBuilder.AlterColumn( name: "Hectometer", table: "I_SportsTestData", type: "float", nullable: false, oldClrType: typeof(int), oldType: "int"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Standing", table: "I_SportsTestData", type: "int", nullable: false, oldClrType: typeof(double), oldType: "float"); migrationBuilder.AlterColumn( name: "Speedeight", table: "I_SportsTestData", type: "int", nullable: false, oldClrType: typeof(double), oldType: "float"); migrationBuilder.AlterColumn( name: "Kilometer", table: "I_SportsTestData", type: "int", nullable: false, oldClrType: typeof(double), oldType: "float"); migrationBuilder.AlterColumn( name: "Hectometer", table: "I_SportsTestData", type: "int", nullable: false, oldClrType: typeof(double), oldType: "float"); } } }