Renamed migration table. Added nullability to template variable migration

This commit is contained in:
2026-03-12 15:45:51 +00:00
parent 2fc371c219
commit 91887ec047
5 changed files with 359 additions and 6 deletions

View File

@@ -126,8 +126,7 @@ namespace MoonlightServers.Api.Infrastructure.Database.Migrations
b3.Property<string>("Key")
.IsRequired();
b3.Property<string>("Value")
.IsRequired();
b3.Property<string>("Value");
});
});
@@ -239,7 +238,6 @@ namespace MoonlightServers.Api.Infrastructure.Database.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("DefaultValue")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("character varying(1024)");