mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
10 lines
231 B
MySQL
10 lines
231 B
MySQL
|
START TRANSACTION;
|
|||
|
|
|||
|
ALTER TABLE `Event` ADD `DomainName` longtext CHARACTER SET utf8mb4 NULL;
|
|||
|
|
|||
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
|||
|
VALUES ('20221209015017_EventsDomainName', '6.0.4');
|
|||
|
|
|||
|
COMMIT;
|
|||
|
|