Track sats consumed

This commit is contained in:
2024-02-21 20:29:58 +00:00
parent f41064f670
commit febeb1b0d4
5 changed files with 519 additions and 11 deletions

View File

@ -225,6 +225,9 @@ namespace NostrStreamer.Migrations
b.Property<DateTime>("LastSegment")
.HasColumnType("timestamp with time zone");
b.Property<decimal>("MilliSatsCollected")
.HasColumnType("numeric");
b.Property<string>("PubKey")
.IsRequired()
.HasColumnType("text");