mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9 lines
359 B
Go
9 lines
359 B
Go
package storage
|
|
|
|
// Keep table names in lower case because some DB does not support upper case.
|
|
var preferencesTableName = "user_preferences"
|
|
var identityVerificationTokensTableName = "identity_verification_tokens"
|
|
var totpSecretsTableName = "totp_secrets"
|
|
var u2fDeviceHandlesTableName = "u2f_devices"
|
|
var authenticationLogsTableName = "authentication_logs"
|