mirror of
https://github.com/bitwarden/server
synced 2026-01-11 13:03:27 +00:00
* Add SQL files * Add SQL Server migration * Add Core entity * Add Dapper repository * Add EF repository * Add EF migrations * Save OrganizationInstallation during GetLicense invocation * Run dotnet format
7 lines
108 B
Transact-SQL
7 lines
108 B
Transact-SQL
CREATE VIEW [dbo].[OrganizationInstallationView]
|
|
AS
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[OrganizationInstallation];
|