This commit is contained in:
Petal Ladenson 2026-01-19 12:29:08 +00:00 committed by GitHub
commit 5fcbd1397f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 182 additions and 29 deletions

View file

@ -32,7 +32,8 @@ public class MessageContext
public Instant? LastSwitchTimestamp { get; }
public ulong? LogChannel { get; }
public bool InBlacklist { get; }
public bool InProxyBlacklist { get; }
public bool InCommandBlacklist { get; }
public bool InLogBlacklist { get; }
public bool LogCleanupEnabled { get; }
public bool RequireSystemTag { get; }

View file

@ -9,7 +9,7 @@ namespace PluralKit.Core;
internal class DatabaseMigrator
{
private const string RootPath = "PluralKit.Core.Database"; // "resource path" root for SQL files
private const int TargetSchemaVersion = 52;
private const int TargetSchemaVersion = 55;
private readonly ILogger _logger;
public DatabaseMigrator(ILogger logger)