mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
IndexerProvider now uses PetaPoco.
This commit is contained in:
parent
ec0ef5d46d
commit
01944acbb1
4 changed files with 21 additions and 12 deletions
|
@ -1,11 +1,12 @@
|
|||
using System;
|
||||
using SubSonic.SqlGeneration.Schema;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
[TableName("IndexerSettings")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class IndexerSetting
|
||||
{
|
||||
[SubSonicPrimaryKey(true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
public Boolean Enable { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue