How do I can import massively roles/functions?
Thanks in advanced.
P.P.
Hi,
Import of parameters is not possible.
And with a "LOAD DATA FROM INTO role"?
Best way to break the framework 👿
Thanks but that doesn't help...
I'll try it.
Audentes fortuna iuvat.
It worked.
Solution:
A CSV file with the following structure:
==============
111;Plumber;
A plumbering work
;127.02
[...]
999;Shoemaker;
An old man with a whoe in his hands
;134.07
==============
In mysql client:
LOAD DATA INFILE '' into table ''role columns terminated by ';' (sortOrder,name,description,defaultCost);
If you don't want warnings pay attention to only 2 decimals in defaultCost.