1
0
mirror of https://github.com/bitwarden/server synced 2026-01-21 03:43:53 +00:00

stub out organization policy db schema

This commit is contained in:
Kyle Spearrin
2020-01-06 14:26:48 -05:00
parent 36e97ccbd2
commit 4e4644e17d
9 changed files with 312 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
CREATE PROCEDURE [dbo].[Policy_ReadByOrganizationId]
@OrganizationId UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[PolicyView]
WHERE
[OrganizationId] = @OrganizationId
END