payloadLifespan/payloadLifetime and other name variants unified to Time To Live naming.

This commit is contained in:
mc
2025-07-05 17:07:53 +02:00
parent 85c462a614
commit a44912ac87
25 changed files with 496 additions and 25 deletions
@@ -43,12 +43,12 @@ namespace MessengerApi.Db.Sql.Migrations
b.Property<string>("Payload")
.HasColumnType("nvarchar(max)");
b.Property<int>("PayloadLifespanInSeconds")
.HasColumnType("int");
b.Property<string>("PayloadType")
.HasColumnType("nvarchar(max)");
b.Property<int>("TimeToLiveInSeconds")
.HasColumnType("int");
b.Property<Guid>("ToId")
.HasColumnType("uniqueidentifier");