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

Refresh OrganizationView (#2883)

This commit is contained in:
Thomas Rittson 2023-04-26 17:37:52 +10:00 committed by GitHub
parent 3d4e7cdbec
commit e29045772c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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