feat: add text-to-speech option to members (#570)

Merges PluralKit/PluralKit#570
This commit is contained in:
rladenson 2023-08-10 18:03:37 +12:00 committed by Iris System
parent 68cd21fb2f
commit e58b3c7274
16 changed files with 90 additions and 6 deletions

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 = 37;
private const int TargetSchemaVersion = 38;
private readonly ILogger _logger;
public DatabaseMigrator(ILogger logger)
@ -78,4 +78,4 @@ internal class DatabaseMigrator
// Then, migration 1 gets executed, which creates the info table and sets version to 1
return -1;
}
}
}