mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Separated migration for LogDB and Application update.
This commit is contained in:
parent
8f4f863631
commit
a48db83be9
99 changed files with 330 additions and 7488 deletions
|
@ -6,9 +6,9 @@ namespace NzbDrone.Core.Datastore.Migrations
|
|||
{
|
||||
|
||||
[Migration(20110909)]
|
||||
public class Migration20110909 : Migration
|
||||
public class Migration20110909 : NzbDroneMigration
|
||||
{
|
||||
public override void Up()
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("Series", "Runtime", DbType.Int32, ColumnProperty.Null);
|
||||
Database.AddColumn("Series", "BannerUrl", DbType.String, ColumnProperty.Null);
|
||||
|
@ -21,10 +21,5 @@ namespace NzbDrone.Core.Datastore.Migrations
|
|||
new Column("MaxSize", DbType.Int32, ColumnProperty.NotNull)
|
||||
});
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue