Fix all to Dotnet9

This commit is contained in:
2025-04-02 13:26:13 -04:00
parent 98fc6329b5
commit 914440087e
10 changed files with 44 additions and 22 deletions

View File

@@ -116,7 +116,18 @@ namespace Hutopy.Web.Features.Contents.Data.Migrations
oldClrType: typeof(string),
oldType: "character varying(2000)",
oldMaxLength: 2000);
migrationBuilder.AlterColumn<string>(
name: "VideoUrlMain",
schema: "Content",
table: "PresentationInfos",
type: "character varying(1024)",
maxLength: 1024,
nullable: false,
oldClrType: typeof(string),
oldType: "character varying(2000)",
oldMaxLength: 2000);
migrationBuilder.AlterColumn<string>(
name: "MainImageUrl",
schema: "Content",
@@ -306,7 +317,18 @@ namespace Hutopy.Web.Features.Contents.Data.Migrations
oldClrType: typeof(string),
oldType: "character varying(1024)",
oldMaxLength: 1024);
migrationBuilder.AlterColumn<string>(
name: "VideoUrlMain",
schema: "Content",
table: "PresentationInfos",
type: "character varying(2000)",
maxLength: 2000,
nullable: false,
oldClrType: typeof(string),
oldType: "character varying(1024)",
oldMaxLength: 1024);
migrationBuilder.AlterColumn<string>(
name: "MainImageUrl",
schema: "Content",