mirror of
https://github.com/bitwarden/server.git
synced 2025-07-16 23:27:30 -05:00
mssql image with setup script on entrypoint
This commit is contained in:
6
util/MsSql/setup.sql
Normal file
6
util/MsSql/setup.sql
Normal file
@ -0,0 +1,6 @@
|
||||
USE [master]
|
||||
IF ((SELECT COUNT(1) FROM sys.databases WHERE [name] = 'vault') = 0)
|
||||
BEGIN
|
||||
CREATE DATABASE [vault]
|
||||
END
|
||||
GO
|
Reference in New Issue
Block a user