mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Fixing my epic fail of not setting the columns to allow null.
This commit is contained in:
parent
ea01ee335b
commit
bebb82ec9f
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ namespace NzbDrone.Core.Datastore.Migration
|
||||||
{
|
{
|
||||||
protected override void MainDbUpgrade()
|
protected override void MainDbUpgrade()
|
||||||
{
|
{
|
||||||
Alter.Table("NamingConfig").AddColumn("ArtistFolderFormat").AsAnsiString();
|
Alter.Table("NamingConfig").AddColumn("ArtistFolderFormat").AsAnsiString().Nullable();
|
||||||
Alter.Table("NamingConfig").AddColumn("AlbumFolderFormat").AsAnsiString();
|
Alter.Table("NamingConfig").AddColumn("AlbumFolderFormat").AsAnsiString().Nullable();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue