Files
contribIA/_baseScripts/create user.sql
2025-10-23 18:31:42 +02:00

4 lines
117 B
SQL

create user 'appcontrib'@'%' identified by 'abc123';
grant all on contribV2.* to 'appcontrib'@'%';
flush privileges;