Thank you for you suggestion
I was also looking for some way to export those columns from the old version to the new one.
with
| Code: |
SELECT username, name, password, email FROM kb.users where disabled=0 ORDER BY ID INTO OUTFILE 'out.file' FIELDS TERMINATED BY '|';
|
I was able to export users list.
With
| Code: |
LOAD DATA LOCAL INFILE 'out.file' INTO TABLE kb.users FIELDS TERMINATED BY '|' (username,name,password,email);
|
I was able to import those registers to the new database.
I needed to remove my own username and the admin user from the out.file to avoid confussion.
Now I'm making some bulk changes in the database to define maxquota and other things.
It seems like the most difficult part is ready.
Thank you very much for your support.
Keep improving this great tools, you are doing a great job.