Rename Manga.ConnectorId to IdOnConnectorSite

Do not include Manga.CoverUrl and CoverFileNameInCache in API-request-responses
This commit is contained in:
2025-03-13 16:07:07 +01:00
parent cd08d9d78b
commit 34ec185125
5 changed files with 778 additions and 13 deletions

View File

@ -18,7 +18,7 @@ namespace API.Migrations
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "9.0.2")
.HasAnnotation("ProductVersion", "9.0.3")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.HasPostgresExtension(modelBuilder, "hstore");
@ -179,11 +179,6 @@ namespace API.Migrations
.HasMaxLength(64)
.HasColumnType("character varying(64)");
b.Property<string>("ConnectorId")
.IsRequired()
.HasMaxLength(64)
.HasColumnType("character varying(64)");
b.Property<string>("CoverFileNameInCache")
.HasColumnType("text");
@ -199,6 +194,11 @@ namespace API.Migrations
.IsRequired()
.HasColumnType("text");
b.Property<string>("IdOnConnectorSite")
.IsRequired()
.HasMaxLength(64)
.HasColumnType("character varying(64)");
b.Property<float>("IgnoreChapterBefore")
.HasColumnType("real");