mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
some db/migration cleanup
This commit is contained in:
24
NzbDrone.Core/Repository/JobDefinition.cs
Normal file
24
NzbDrone.Core/Repository/JobDefinition.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
[TableName("JobDefinitions")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class JobDefinition
|
||||
{
|
||||
public Int32 Id { get; set; }
|
||||
|
||||
public Boolean Enable { get; set; }
|
||||
|
||||
public String TypeName { get; set; }
|
||||
|
||||
public String Name { get; set; }
|
||||
|
||||
public Int32 Interval { get; set; }
|
||||
|
||||
public DateTime LastExecution { get; set; }
|
||||
|
||||
public Boolean Success { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user