summaryrefslogtreecommitdiff
path: root/Migrations/ApplicationDbContextModelSnapshot.cs
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-27 12:46:26 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-27 12:46:26 -0600
commit3da900a30e788d0acf2fcee7dba2aecdb16aab43 (patch)
treeec8312f37d26f81b22fb498728572f08983d67e5 /Migrations/ApplicationDbContextModelSnapshot.cs
parent45eb6bcac6eaa57efba955dd45aad46f988aaf35 (diff)
Añadido logout
Diffstat (limited to 'Migrations/ApplicationDbContextModelSnapshot.cs')
-rw-r--r--Migrations/ApplicationDbContextModelSnapshot.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Migrations/ApplicationDbContextModelSnapshot.cs b/Migrations/ApplicationDbContextModelSnapshot.cs
index 917cafd..37dac6d 100644
--- a/Migrations/ApplicationDbContextModelSnapshot.cs
+++ b/Migrations/ApplicationDbContextModelSnapshot.cs
@@ -146,6 +146,9 @@ namespace BackendPIA.Migrations
.IsConcurrencyToken()
.HasColumnType("text");
+ b.Property<string>("CurrentToken")
+ .HasColumnType("text");
+
b.Property<string>("Email")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
@@ -340,7 +343,7 @@ namespace BackendPIA.Migrations
modelBuilder.Entity("BackendPIA.Models.Prize", b =>
{
b.HasOne("BackendPIA.Models.Raffle", "Raffle")
- .WithMany()
+ .WithMany("Prizes")
.HasForeignKey("RaffleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
@@ -447,6 +450,8 @@ namespace BackendPIA.Migrations
modelBuilder.Entity("BackendPIA.Models.Raffle", b =>
{
+ b.Navigation("Prizes");
+
b.Navigation("Tickets");
});