mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
10 lines
247 B
MySQL
10 lines
247 B
MySQL
|
START TRANSACTION;
|
|||
|
|
|||
|
ALTER TABLE `OrganizationDomain` ADD `LastCheckedDate` datetime(6) NULL;
|
|||
|
|
|||
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
|||
|
VALUES ('20221209192355_OrganizationDomainLastCheckedDate', '6.0.4');
|
|||
|
|
|||
|
COMMIT;
|
|||
|
|