13 lines
312 B
C#
13 lines
312 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public static class SqliteAuthSchema
|
|
{
|
|
public const int CurrentVersion = 1;
|
|
|
|
public const string SchemaVersionTable = "schema_version";
|
|
|
|
public const string ApiKeysTable = "api_keys";
|
|
|
|
public const string ApiKeyAuditTable = "api_key_audit";
|
|
}
|