mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
some db/migration cleanup
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using PetaPoco;
|
||||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
[TableName("IndexerDefinitions")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class IndexerDefinition
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public Boolean Enable { get; set; }
|
||||
|
||||
public String IndexProviderType { get; set; }
|
||||
|
||||
public String Name { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user