using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RecNet.Infrastructure.Persistence.Migrations { /// public partial class Char : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Version", table: "GameVersions", type: "character varying(50)", maxLength: 50, nullable: false, oldClrType: typeof(string), oldType: "character varying(32)", oldMaxLength: 32); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Version", table: "GameVersions", type: "character varying(32)", maxLength: 32, nullable: false, oldClrType: typeof(string), oldType: "character varying(50)", oldMaxLength: 50); } } }