fix #2584 - added IsDeleted columns back to Folder and File tables to preserve compatibility for SQLite

This commit is contained in:
Shaun Walker
2023-02-08 08:05:25 -05:00
parent ffca1d2486
commit 475894b680
6 changed files with 57 additions and 10 deletions

View File

@ -55,6 +55,11 @@ namespace Oqtane.Models
/// </summary>
public string Description { get; set; }
/// <summary>
/// Deprecated - not used
/// </summary>
public bool IsDeleted { get; set; }
/// <summary>
/// Object reference to the <see cref="Folder"/> object.
/// Use this if you need to determine what <see cref="Site"/> the file belongs to.

View File

@ -59,6 +59,11 @@ namespace Oqtane.Models
/// </summary>
public bool IsSystem { get; set; }
/// <summary>
/// Deprecated - not used
/// </summary>
public bool IsDeleted { get; set; }
/// <summary>
/// TODO: todoc what would this contain?
/// </summary>