mirror of
https://github.com/bitwarden/server
synced 2025-12-29 06:33:43 +00:00
10 lines
219 B
Transact-SQL
10 lines
219 B
Transact-SQL
CREATE VIEW [dbo].[ApiKeyDetailsView]
|
|
AS
|
|
SELECT
|
|
AK.*,
|
|
SA.[OrganizationId] ServiceAccountOrganizationId
|
|
FROM
|
|
[dbo].[ApiKey] AS AK
|
|
LEFT JOIN
|
|
[dbo].[ServiceAccount] SA ON SA.[Id] = AK.[ServiceAccountId]
|