mirror of
https://github.com/bitwarden/server
synced 2026-01-03 17:14:00 +00:00
* PM-26966 added new metric columns to organization report table * PM-26966 fixing migration * PM-26966 fixing formatting issue. * PM-26966 updating unit tests * PM-26966 fixing SQL to read from view
13 lines
285 B
Transact-SQL
13 lines
285 B
Transact-SQL
CREATE PROCEDURE [dbo].[OrganizationReport_GetLatestByOrganizationId]
|
|
@OrganizationId UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT TOP 1
|
|
*
|
|
FROM [dbo].[OrganizationReportView]
|
|
WHERE [OrganizationId] = @OrganizationId
|
|
ORDER BY [RevisionDate] DESC
|
|
END
|