Removed CLI project, added database migrations, added SQLHelper

This commit is contained in:
2025-06-06 00:29:38 +02:00
parent 89545b0d71
commit ad599433bf
10 changed files with 152 additions and 555 deletions

View File

@@ -0,0 +1,14 @@
namespace Server.Exceptions;
public class DatabaseVersionException : Exception
{
public DatabaseVersionException()
: base("DatabaseVersion could not be parsed as integer. Please ensure the DatabaseVersion can be parsed as an integer.")
{
}
public DatabaseVersionException(string message)
: base(message)
{
}
}