1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/MySqlMigrations/Scripts/2022-01-21_00_RemoveU2F.sql
2022-01-24 12:14:04 +01:00

9 lines
332 B
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

START TRANSACTION;
DROP TABLE `U2f`;
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
VALUES ('20220121092546_RemoveU2F', '5.0.12');
COMMIT;