mirror of
https://github.com/Readarr/Readarr
synced 2025-12-20 07:13:17 +01: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 @@ public class add_music_fields_to_namingconfig : NzbDroneMigrationBase
|
|||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("NamingConfig").AddColumn("ArtistFolderFormat").AsAnsiString();
|
||||
Alter.Table("NamingConfig").AddColumn("AlbumFolderFormat").AsAnsiString();
|
||||
Alter.Table("NamingConfig").AddColumn("ArtistFolderFormat").AsAnsiString().Nullable();
|
||||
Alter.Table("NamingConfig").AddColumn("AlbumFolderFormat").AsAnsiString().Nullable();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue