Files
Projet_Symfony_IA_Quentin/_baseScripts/create user.sql

4 lines
117 B
MySQL
Raw Normal View History

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