mirror of https://github.com/Radarr/Radarr
22 lines
875 B
C#
22 lines
875 B
C#
|
using System;
|
|||
|
using System.Data;
|
|||
|
using Migrator.Framework;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Datastore.Migrations
|
|||
|
{
|
|||
|
|
|||
|
[Migration(20120220)]
|
|||
|
public class Migration20120220 : NzbDroneMigration
|
|||
|
{
|
|||
|
protected override void MainDbUpgrade()
|
|||
|
{
|
|||
|
Database.AddTable("Seasons", new[]
|
|||
|
{
|
|||
|
new Column("SeasonId", DbType.Int32, ColumnProperty.PrimaryKeyWithIdentity),
|
|||
|
new Column("SeriesId", DbType.Int32, ColumnProperty.NotNull),
|
|||
|
new Column("SeasonNumber", DbType.Int32, ColumnProperty.NotNull),
|
|||
|
new Column("Ignored", DbType.Boolean, ColumnProperty.NotNull)
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|