Skip to content

Commit 84e4d56

Browse files
committed
Manually refresh the UserCipherDetailsView
1 parent ca59535 commit 84e4d56

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

util/Migrator/DbScripts/2025-03-11_00_AddArchivedDateToCipher.sql

+9
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ FROM
6060
[dbo].[Cipher] C
6161
GO
6262

63+
64+
-- Manually refresh UserCipherDetails
65+
IF OBJECT_ID('[dbo].[UserCipherDetails]') IS NOT NULL
66+
BEGIN
67+
EXECUTE sp_refreshsqlmodule N'[dbo].[UserCipherDetails]';
68+
END
69+
GO
70+
71+
6372
-- Update sprocs
6473
CREATE OR ALTER PROCEDURE [dbo].[Cipher_Create]
6574
@Id UNIQUEIDENTIFIER OUTPUT,

0 commit comments

Comments
 (0)