From e54b117084d7e7852f60fa776e850850e175c611 Mon Sep 17 00:00:00 2001 From: evan-scales Date: Thu, 25 Jan 2024 13:42:29 -0500 Subject: [PATCH] fix check --- .../20231203001316_NonNullablePostDescription.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FU.API/FU.API/Migrations/20231203001316_NonNullablePostDescription.cs b/FU.API/FU.API/Migrations/20231203001316_NonNullablePostDescription.cs index 47762e41..eb36bb12 100644 --- a/FU.API/FU.API/Migrations/20231203001316_NonNullablePostDescription.cs +++ b/FU.API/FU.API/Migrations/20231203001316_NonNullablePostDescription.cs @@ -1,9 +1,9 @@ -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable +#nullable disable namespace FU.API.Migrations { + using Microsoft.EntityFrameworkCore.Migrations; + /// public partial class NonNullablePostDescription : Migration { @@ -15,7 +15,7 @@ protected override void Up(MigrationBuilder migrationBuilder) table: "Posts", type: "text", nullable: false, - defaultValue: "", + defaultValue: string.Empty, oldClrType: typeof(string), oldType: "text", oldNullable: true);