✨ Insight proper payment validation
This commit is contained in:
@@ -122,6 +122,23 @@ namespace DysonNetwork.Insight.Migrations
|
||||
b.ToTable("thinking_thoughts", (string)null);
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DysonNetwork.Shared.Models.SnUnpaidAccount", b =>
|
||||
{
|
||||
b.Property<Guid>("AccountId")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("uuid")
|
||||
.HasColumnName("account_id");
|
||||
|
||||
b.Property<DateTime>("MarkedAt")
|
||||
.HasColumnType("timestamp with time zone")
|
||||
.HasColumnName("marked_at");
|
||||
|
||||
b.HasKey("AccountId")
|
||||
.HasName("pk_unpaid_accounts");
|
||||
|
||||
b.ToTable("unpaid_accounts", (string)null);
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DysonNetwork.Shared.Models.SnThinkingThought", b =>
|
||||
{
|
||||
b.HasOne("DysonNetwork.Shared.Models.SnThinkingSequence", "Sequence")
|
||||
|
||||
Reference in New Issue
Block a user