fix #4855 - dropping required column causes issue on SQLite

This commit is contained in:
sbwalker
2024-11-22 11:55:43 -05:00
parent 043fb1abd1
commit 7d94e4a53a
5 changed files with 42 additions and 4 deletions

View File

@ -56,7 +56,9 @@ namespace Oqtane.Models
public string Description { get; set; }
/// <summary>
/// Deprecated - not used
/// Deprecated
/// Note that this property still exists in the database because columns cannot be dropped in SQLite
/// Therefore the property must be retained/mapped even though the framework no longer uses it
/// </summary>
public bool? IsDeleted { get; set; }