1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-07-06 02:44:16 +02:00

Database Migrations

This commit is contained in:
2025-03-08 13:10:39 +01:00
parent a694b9f5ab
commit c3ebd6acac
3 changed files with 767 additions and 0 deletions

@ -179,6 +179,14 @@ namespace API.Migrations
.HasMaxLength(64)
.HasColumnType("character varying(64)");
b.PrimitiveCollection<string[]>("AltTitleIds")
.IsRequired()
.HasColumnType("text[]");
b.PrimitiveCollection<string[]>("AuthorIds")
.IsRequired()
.HasColumnType("text[]");
b.Property<string>("ConnectorId")
.IsRequired()
.HasMaxLength(64)
@ -202,6 +210,10 @@ namespace API.Migrations
b.Property<float>("IgnoreChapterBefore")
.HasColumnType("real");
b.PrimitiveCollection<string[]>("LinkIds")
.IsRequired()
.HasColumnType("text[]");
b.Property<string>("MangaConnectorId")
.IsRequired()
.HasColumnType("character varying(32)");
@ -216,6 +228,10 @@ namespace API.Migrations
b.Property<byte>("ReleaseStatus")
.HasColumnType("smallint");
b.PrimitiveCollection<string[]>("TagIds")
.IsRequired()
.HasColumnType("text[]");
b.Property<string>("WebsiteUrl")
.IsRequired()
.HasColumnType("text");