mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
More on the UI !wip
This commit is contained in:
parent
e8c6b23304
commit
806cf7c0ff
17 changed files with 243 additions and 83 deletions
|
@ -508,6 +508,28 @@ namespace Ombi.Store.Migrations
|
|||
b.ToTable("RecentlyAddedLog");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Ombi.Store.Entities.RequestQueue", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<DateTime?>("Completed");
|
||||
|
||||
b.Property<DateTime>("Dts");
|
||||
|
||||
b.Property<string>("Error");
|
||||
|
||||
b.Property<int>("RequestId");
|
||||
|
||||
b.Property<int>("RetryCount");
|
||||
|
||||
b.Property<int>("Type");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("RequestQueue");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Ombi.Store.Entities.Requests.AlbumRequest", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue