some db/migration cleanup

This commit is contained in:
kay.one 2011-07-07 20:27:11 -07:00
commit 15aedfc847
13 changed files with 76 additions and 130 deletions

View file

@ -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; }
}
}