mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
38927e3ca1
New: Search History, review recent searches and force specific reports to download (Under history)
39 lines
2.6 KiB
C#
39 lines
2.6 KiB
C#
using System.Data;
|
|
using Migrator.Framework;
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
{
|
|
[Migration(20120420)]
|
|
public class Migration20120420 : NzbDroneMigration
|
|
{
|
|
protected override void MainDbUpgrade()
|
|
{
|
|
Database.AddTable("SearchHistory", new[]
|
|
{
|
|
new Column("Id", DbType.Int32, ColumnProperty.PrimaryKeyWithIdentity),
|
|
new Column("SeriesId", DbType.Int32, ColumnProperty.NotNull),
|
|
new Column("SeasonNumber", DbType.Int32, ColumnProperty.Null),
|
|
new Column("EpisodeId", DbType.Int32, ColumnProperty.Null),
|
|
new Column("SearchTime", DbType.DateTime, ColumnProperty.NotNull),
|
|
new Column("SuccessfulDownload", DbType.Boolean, ColumnProperty.NotNull)
|
|
});
|
|
|
|
Database.AddTable("SearchHistoryItems", new[]
|
|
{
|
|
new Column("Id", DbType.Int32, ColumnProperty.PrimaryKeyWithIdentity),
|
|
new Column("SearchHistoryId", DbType.Int32, ColumnProperty.NotNull),
|
|
new Column("ReportTitle", DbType.String, ColumnProperty.NotNull),
|
|
new Column("Indexer", DbType.String, ColumnProperty.NotNull),
|
|
new Column("NzbUrl", DbType.String, ColumnProperty.NotNull),
|
|
new Column("NzbInfoUrl", DbType.String, ColumnProperty.Null),
|
|
new Column("Success", DbType.Boolean, ColumnProperty.NotNull),
|
|
new Column("SearchError", DbType.Int32, ColumnProperty.NotNull),
|
|
new Column("Quality", DbType.Int32, ColumnProperty.NotNull),
|
|
new Column("Proper", DbType.Boolean, ColumnProperty.NotNull),
|
|
new Column("Age", DbType.Int32, ColumnProperty.NotNull),
|
|
new Column("Language", DbType.Int32, ColumnProperty.NotNull),
|
|
new Column("Size", DbType.Int64, ColumnProperty.NotNull),
|
|
});
|
|
}
|
|
}
|
|
} |