mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-03 00:02:25 -05:00
Adds a "qgis_test_user" database users with the db setup script, using an hard-coded password for connection. This was the simplest way to make things work because the alternative of using 'options' member in the URI is not supported by QGIS at the moment, see https://github.com/qgis/QGIS/issues/32832
4 lines
106 B
SQL
4 lines
106 B
SQL
DROP USER IF EXISTS qgis_test_user;
|
|
CREATE USER qgis_test_user PASSWORD 'qgis_test_user_password' LOGIN;
|
|
|