1
0
mirror of https://github.com/bitwarden/server synced 2026-01-11 04:53:18 +00:00
Files
server/src/Sql/dbo/Stored Procedures/CipherDetails_ReadByUserId.sql
Kyle Spearrin d3499dce84 centralize select logic to UserCipherDetails func
- Also create cipher bulk move and delete sprocs
2017-06-08 23:49:55 -04:00

11 lines
189 B
Transact-SQL

CREATE PROCEDURE [dbo].[CipherDetails_ReadByUserId]
@UserId UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[UserCipherDetails](@UserId)
END