hidden activity
This commit is contained in:
@ -531,6 +531,40 @@ namespace Yavsc.Migrations
|
||||
b.HasKey("UserId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Messaging.DimissClicked", b =>
|
||||
{
|
||||
b.Property<string>("UserId");
|
||||
|
||||
b.Property<long>("NotificationId");
|
||||
|
||||
b.HasKey("UserId", "NotificationId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Messaging.Notification", b =>
|
||||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<string>("body")
|
||||
.IsRequired();
|
||||
|
||||
b.Property<string>("click_action")
|
||||
.IsRequired();
|
||||
|
||||
b.Property<string>("color");
|
||||
|
||||
b.Property<string>("icon");
|
||||
|
||||
b.Property<string>("sound");
|
||||
|
||||
b.Property<string>("tag");
|
||||
|
||||
b.Property<string>("title")
|
||||
.IsRequired();
|
||||
|
||||
b.HasKey("Id");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Musical.Instrument", b =>
|
||||
{
|
||||
b.Property<long>("Id")
|
||||
@ -717,6 +751,8 @@ namespace Yavsc.Migrations
|
||||
|
||||
b.Property<string>("Description");
|
||||
|
||||
b.Property<bool>("Hidden");
|
||||
|
||||
b.Property<string>("ModeratorGroupName");
|
||||
|
||||
b.Property<string>("Name")
|
||||
@ -1018,6 +1054,17 @@ namespace Yavsc.Migrations
|
||||
.HasForeignKey("BillingAddressId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Messaging.DimissClicked", b =>
|
||||
{
|
||||
b.HasOne("Yavsc.Models.Messaging.Notification")
|
||||
.WithMany()
|
||||
.HasForeignKey("NotificationId");
|
||||
|
||||
b.HasOne("Yavsc.Models.ApplicationUser")
|
||||
.WithMany()
|
||||
.HasForeignKey("UserId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Musical.MusicalPreference", b =>
|
||||
{
|
||||
b.HasOne("Yavsc.Models.Musical.Profiles.DjSettings")
|
||||
|
Reference in New Issue
Block a user