mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
Relax password complexity in test database
This password is not strong enough in MSSQL 2022, relax this restriction https://learn.microsoft.com/en-us/sql/relational-databases/security/password-policy?view=sql-server-ver16 https://learn.microsoft.com/en-us/sql/t-sql/statements/create-login-transact-sql?view=sql-server-ver16#check_policy---on--off-
This commit is contained in:
parent
15569d0b13
commit
01141e5f69
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ GO
|
|||
USE ejabberd_test;
|
||||
GO
|
||||
|
||||
CREATE LOGIN ejabberd_test WITH PASSWORD = 'ejabberd_Test1';
|
||||
CREATE LOGIN ejabberd_test WITH PASSWORD = 'ejabberd_Test1', CHECK_POLICY = OFF;
|
||||
GO
|
||||
|
||||
CREATE USER ejabberd_test FOR LOGIN ejabberd_test;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue