2019-11-16 19:50:58 +00:00
|
|
|
package storage
|
|
|
|
|
2020-07-16 05:56:08 +00:00
|
|
|
import (
|
2021-11-23 09:45:38 +00:00
|
|
|
"regexp"
|
2020-07-16 05:56:08 +00:00
|
|
|
)
|
|
|
|
|
2021-11-23 09:45:38 +00:00
|
|
|
const (
|
|
|
|
tableUserPreferences = "user_preferences"
|
2021-11-30 06:58:21 +00:00
|
|
|
tableIdentityVerification = "identity_verification"
|
2021-11-23 09:45:38 +00:00
|
|
|
tableTOTPConfigurations = "totp_configurations"
|
2022-03-03 11:20:43 +00:00
|
|
|
tableWebauthnDevices = "webauthn_devices"
|
2021-12-01 03:32:58 +00:00
|
|
|
tableDuoDevices = "duo_devices"
|
2021-11-23 09:45:38 +00:00
|
|
|
tableAuthenticationLogs = "authentication_logs"
|
|
|
|
tableMigrations = "migrations"
|
2021-11-25 01:56:58 +00:00
|
|
|
tableEncryption = "encryption"
|
2021-11-23 09:45:38 +00:00
|
|
|
|
|
|
|
tablePrefixBackup = "_bkp_"
|
|
|
|
)
|
|
|
|
|
2021-11-25 01:56:58 +00:00
|
|
|
const (
|
|
|
|
encryptionNameCheck = "check"
|
|
|
|
)
|
|
|
|
|
2021-11-23 09:45:38 +00:00
|
|
|
// WARNING: Do not change/remove these consts. They are used for Pre1 migrations.
|
|
|
|
const (
|
2021-12-03 00:04:11 +00:00
|
|
|
tablePre1TOTPSecrets = "totp_secrets"
|
|
|
|
tablePre1IdentityVerificationTokens = "identity_verification_tokens"
|
2022-03-03 11:20:43 +00:00
|
|
|
tablePre1U2FDevices = "u2f_devices"
|
2021-12-03 00:04:11 +00:00
|
|
|
|
|
|
|
tablePre1Config = "config"
|
|
|
|
|
2021-11-23 09:45:38 +00:00
|
|
|
tableAlphaAuthenticationLogs = "AuthenticationLogs"
|
|
|
|
tableAlphaIdentityVerificationTokens = "IdentityVerificationTokens"
|
|
|
|
tableAlphaPreferences = "Preferences"
|
|
|
|
tableAlphaPreferencesTableName = "PreferencesTableName"
|
|
|
|
tableAlphaSecondFactorPreferences = "SecondFactorPreferences"
|
|
|
|
tableAlphaTOTPSecrets = "TOTPSecrets"
|
|
|
|
tableAlphaU2FDeviceHandles = "U2FDeviceHandles"
|
|
|
|
)
|
|
|
|
|
2021-12-03 00:04:11 +00:00
|
|
|
var tablesPre1 = []string{
|
|
|
|
tablePre1TOTPSecrets,
|
|
|
|
tablePre1IdentityVerificationTokens,
|
2022-03-03 11:20:43 +00:00
|
|
|
tablePre1U2FDevices,
|
2021-12-03 00:04:11 +00:00
|
|
|
|
|
|
|
tableUserPreferences,
|
|
|
|
tableAuthenticationLogs,
|
|
|
|
}
|
|
|
|
|
2021-11-23 09:45:38 +00:00
|
|
|
const (
|
|
|
|
providerAll = "all"
|
|
|
|
providerMySQL = "mysql"
|
|
|
|
providerPostgres = "postgres"
|
|
|
|
providerSQLite = "sqlite"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// This is the latest schema version for the purpose of tests.
|
2022-03-04 10:21:08 +00:00
|
|
|
testLatestVersion = 3
|
2021-11-23 09:45:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// SchemaLatest represents the value expected for a "migrate to latest" migration. It's the maximum 32bit signed integer.
|
|
|
|
SchemaLatest = 2147483647
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
reMigration = regexp.MustCompile(`^V(\d{4})\.([^.]+)\.(all|sqlite|postgres|mysql)\.(up|down)\.sql$`)
|
|
|
|
)
|