mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01: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
@ -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…
Reference in New Issue
Block a user