mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Scheduled Tasks should work as long as they are registered.
This commit is contained in:
parent
fa8f67d7fe
commit
32431540c5
21 changed files with 253 additions and 106 deletions
|
@ -91,11 +91,10 @@ namespace NzbDrone.Core.Datastore.Migration
|
|||
.WithColumn("Type").AsString().Unique()
|
||||
.WithColumn("Name").AsString().Unique();
|
||||
|
||||
Create.TableForModel("JobDefinitions")
|
||||
Create.TableForModel("ScheduledTasks")
|
||||
.WithColumn("Name").AsString().Unique()
|
||||
.WithColumn("Interval").AsInt32()
|
||||
.WithColumn("LastExecution").AsDateTime()
|
||||
.WithColumn("Success").AsBoolean();
|
||||
.WithColumn("LastExecution").AsDateTime();
|
||||
|
||||
Create.TableForModel("IndexerDefinitions")
|
||||
.WithColumn("Enable").AsBoolean()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue