2021-10-29 22:42:00 +01:00
|
|
|
|
// <auto-generated />
|
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
|
using Selector.Model;
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2021-10-29 22:42:00 +01:00
|
|
|
|
namespace Selector.Model.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
|
|
|
partial class ApplicationDbContextModelSnapshot : ModelSnapshot
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
2022-02-16 23:38:45 +00:00
|
|
|
|
.HasAnnotation("Npgsql:CollationDefinition:case_insensitive", "en-u-ks-primary,en-u-ks-primary,icu,False")
|
|
|
|
|
.HasAnnotation("ProductVersion", "6.0.2")
|
2021-11-26 20:40:18 +00:00
|
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
|
|
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
|
|
|
.IsConcurrencyToken()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NormalizedName")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("NormalizedName")
|
|
|
|
|
.IsUnique()
|
|
|
|
|
.HasDatabaseName("RoleNameIndex");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetRoles", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
b.HasData(
|
|
|
|
|
new
|
|
|
|
|
{
|
|
|
|
|
Id = "00c64c0a-3387-4933-9575-83443fa9092b",
|
2022-02-24 22:35:39 +00:00
|
|
|
|
ConcurrencyStamp = "ec454f56-2b26-4bd8-be8e-a7fd34981ac2",
|
2021-10-29 22:42:00 +01:00
|
|
|
|
Name = "Admin",
|
|
|
|
|
NormalizedName = "ADMIN"
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
2021-11-26 20:40:18 +00:00
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimType")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimValue")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("RoleId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetRoleClaims", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
2021-11-26 20:40:18 +00:00
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimType")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimValue")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetUserClaims", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("LoginProvider")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ProviderKey")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetUserLogins", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("RoleId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetUserRoles", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("LoginProvider")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Value")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetUserTokens", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
2022-02-16 23:38:45 +00:00
|
|
|
|
modelBuilder.Entity("Selector.Model.AlbumLastfmSpotifyMapping", b =>
|
|
|
|
|
{
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.Property<string>("SpotifyUri")
|
|
|
|
|
.HasColumnType("text");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
|
|
|
|
b.Property<string>("LastfmAlbumName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("LastfmArtistName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.HasKey("SpotifyUri");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.ToTable("AlbumMapping");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
});
|
|
|
|
|
|
2021-10-29 22:42:00 +01:00
|
|
|
|
modelBuilder.Entity("Selector.Model.ApplicationUser", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
|
|
|
.IsConcurrencyToken()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Email")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("LastFmUsername")
|
2022-02-16 23:38:45 +00:00
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("PasswordHash")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
2022-02-16 23:38:45 +00:00
|
|
|
|
b.Property<bool>("SaveScrobbles")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
2021-10-29 22:42:00 +01:00
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("SpotifyAccessToken")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("SpotifyIsLinked")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTime>("SpotifyLastRefresh")
|
2021-11-26 20:40:18 +00:00
|
|
|
|
.HasColumnType("timestamp with time zone");
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
b.Property<string>("SpotifyRefreshToken")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<int>("SpotifyTokenExpiry")
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserName")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
|
|
|
.HasDatabaseName("EmailIndex");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
|
|
|
.IsUnique()
|
|
|
|
|
.HasDatabaseName("UserNameIndex");
|
|
|
|
|
|
2021-11-26 20:40:18 +00:00
|
|
|
|
b.ToTable("AspNetUsers", (string)null);
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
2022-02-16 23:38:45 +00:00
|
|
|
|
modelBuilder.Entity("Selector.Model.ArtistLastfmSpotifyMapping", b =>
|
|
|
|
|
{
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.Property<string>("SpotifyUri")
|
|
|
|
|
.HasColumnType("text");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
|
|
|
|
b.Property<string>("LastfmArtistName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.HasKey("SpotifyUri");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.ToTable("ArtistMapping");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Selector.Model.TrackLastfmSpotifyMapping", b =>
|
|
|
|
|
{
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.Property<string>("SpotifyUri")
|
|
|
|
|
.HasColumnType("text");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
|
|
|
|
b.Property<string>("LastfmArtistName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("LastfmTrackName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.HasKey("SpotifyUri");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.ToTable("TrackMapping");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Selector.Model.UserScrobble", b =>
|
|
|
|
|
{
|
2022-02-20 21:54:01 +00:00
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("integer");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
2022-02-20 21:54:01 +00:00
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
|
|
|
|
b.Property<string>("AlbumArtistName")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("AlbumName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ArtistName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
2022-02-20 21:54:01 +00:00
|
|
|
|
b.Property<DateTime>("Timestamp")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
2022-02-16 23:38:45 +00:00
|
|
|
|
b.Property<string>("TrackName")
|
|
|
|
|
.HasColumnType("text")
|
|
|
|
|
.UseCollation("case_insensitive");
|
|
|
|
|
|
2022-02-20 21:54:01 +00:00
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.ToTable("Scrobble");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
});
|
|
|
|
|
|
2021-10-29 22:42:00 +01:00
|
|
|
|
modelBuilder.Entity("Selector.Model.Watcher", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
2021-11-26 20:40:18 +00:00
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
2021-10-29 22:42:00 +01:00
|
|
|
|
|
|
|
|
|
b.Property<int>("Type")
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
2022-02-24 22:35:39 +00:00
|
|
|
|
b.ToTable("Watcher");
|
2021-10-29 22:42:00 +01:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("RoleId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Selector.Model.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Selector.Model.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("RoleId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
|
|
|
|
|
b.HasOne("Selector.Model.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Selector.Model.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
2022-02-16 23:38:45 +00:00
|
|
|
|
modelBuilder.Entity("Selector.Model.UserScrobble", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Selector.Model.ApplicationUser", "User")
|
|
|
|
|
.WithMany("Scrobbles")
|
2022-02-20 21:54:01 +00:00
|
|
|
|
.HasForeignKey("UserId");
|
2022-02-16 23:38:45 +00:00
|
|
|
|
|
|
|
|
|
b.Navigation("User");
|
|
|
|
|
});
|
|
|
|
|
|
2021-10-29 22:42:00 +01:00
|
|
|
|
modelBuilder.Entity("Selector.Model.Watcher", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("Selector.Model.ApplicationUser", "User")
|
|
|
|
|
.WithMany("Watchers")
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
|
|
|
|
|
b.Navigation("User");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Selector.Model.ApplicationUser", b =>
|
|
|
|
|
{
|
2022-02-16 23:38:45 +00:00
|
|
|
|
b.Navigation("Scrobbles");
|
|
|
|
|
|
2021-10-29 22:42:00 +01:00
|
|
|
|
b.Navigation("Watchers");
|
|
|
|
|
});
|
|
|
|
|
#pragma warning restore 612, 618
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|