1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-15 01:41:40 +01:00

[pm-17911] Refresh OrganizationView (#5360)

This commit is contained in:
Jimmy Vo 2025-02-03 12:35:46 -05:00 committed by GitHub
parent 1adc5358a8
commit fe983aff7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,7 @@
-- Refresh Views
IF OBJECT_ID('[dbo].[OrganizationView]') IS NOT NULL
BEGIN
EXECUTE sp_refreshview N'[dbo].[OrganizationView]';
END
GO