mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Added the root folders and qualities per user!
This commit is contained in:
parent
78091ff15e
commit
91b6dfe2b7
9 changed files with 1313 additions and 40 deletions
|
@ -890,6 +890,32 @@ namespace Ombi.Store.Migrations
|
|||
b.ToTable("UserNotificationPreferences");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Ombi.Store.Entities.UserQualityProfiles", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<int>("RadarrQualityProfile");
|
||||
|
||||
b.Property<int>("RadarrRootPath");
|
||||
|
||||
b.Property<int>("SonarrQualityProfile");
|
||||
|
||||
b.Property<int>("SonarrQualityProfileAnime");
|
||||
|
||||
b.Property<int>("SonarrRootPath");
|
||||
|
||||
b.Property<int>("SonarrRootPathAnime");
|
||||
|
||||
b.Property<string>("UserId");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("UserId");
|
||||
|
||||
b.ToTable("UserQualityProfiles");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Ombi.Store.Repository.Requests.EpisodeRequests", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
|
@ -1095,6 +1121,13 @@ namespace Ombi.Store.Migrations
|
|||
.HasForeignKey("UserId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Ombi.Store.Entities.UserQualityProfiles", b =>
|
||||
{
|
||||
b.HasOne("Ombi.Store.Entities.OmbiUser", "User")
|
||||
.WithMany()
|
||||
.HasForeignKey("UserId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Ombi.Store.Repository.Requests.EpisodeRequests", b =>
|
||||
{
|
||||
b.HasOne("Ombi.Store.Repository.Requests.SeasonRequests", "Season")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue