mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9ceee6c660
This change makes it so only metadata about tokens is stored. Tokens can still be resigned due to conversion methods that convert from the JWT type to the database type. This should be more efficient and should mean we don't have to encrypt tokens or token info in the database at least for now.
7 lines
266 B
SQL
7 lines
266 B
SQL
DROP TABLE IF EXISTS authentication_logs;
|
|
DROP TABLE IF EXISTS identity_verification;
|
|
DROP TABLE IF EXISTS totp_configurations;
|
|
DROP TABLE IF EXISTS u2f_devices;
|
|
DROP TABLE IF EXISTS user_preferences;
|
|
DROP TABLE IF EXISTS migrations;
|
|
DROP TABLE IF EXISTS encryption; |