mirror of
https://github.com/bitwarden/server.git
synced 2024-12-29 18:07:36 +01:00
8 lines
234 B
MySQL
8 lines
234 B
MySQL
|
START TRANSACTION;
|
||
|
|
||
|
ALTER TABLE `AuthRequest` ADD `Approved` tinyint(1) NULL;
|
||
|
|
||
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
||
|
VALUES ('20221024210500_PasswordlessAuthRequestAddApprovedColumn', '6.0.4');
|
||
|
|
||
|
COMMIT;
|