mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08: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;
|