Files
contribv2AI/_baseScripts/create user.sql

3 lines
116 B
MySQL
Raw Normal View History

2025-10-23 18:31:42 +02:00
create user 'appcontrib'@'%' identified by 'abc123';
grant all on contribV2.* to 'appcontrib'@'%';
2025-10-24 16:18:08 +02:00
flush privileges;