fix broken migration abstraction, fixes restart after upgrade so the runtimestate is correct, fixes sql alter column migration to actually run if its nullable.

This commit is contained in:
Shannon
2021-06-24 13:35:57 -06:00
parent d6a6016801
commit 3d5d04550a
95 changed files with 271 additions and 263 deletions

View File

@@ -8,6 +8,12 @@ namespace Umbraco.Cms.Infrastructure.PublishedCache.Persistence
/// </summary>
public interface INuCacheContentService
{
/// <summary>
/// Used during startup to see if the configured serialized is different from the persisted serialize type.
/// If they are different, this will rebuild the nucache DB table with the configured serializer.
/// </summary>
void RebuildDatabaseCacheIfSerializerChanged();
// TODO: For these required sort orders, would sorting on Path 'just work'?
ContentNodeKit GetContentSource(int id);