1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/MySqlMigrations/Scripts/2021-11-12_00_KeyConnectorFlag.sql
2021-11-17 11:46:35 +01:00

9 lines
492 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;
ALTER TABLE `Organization` ADD `UseKeyConnector` tinyint(1) NOT NULL DEFAULT FALSE;
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
VALUES ('20211115145402_KeyConnectorFlag', '5.0.9');
COMMIT;