Hi there!
I have a Default profile set in TTRSS for my user but I’d love to duplicate it so I didn’t had to redo all the settings, just to make minor changes for when I change devices.
I already created a new one but that doesn’t suit me.Is there any way I can achieve this?
I’ve been wandering about in the database but also found no answer so, can anyone help me please?

Thanks in advance!

you can make a plugin. i don’t think there’s any point in adding this to stock UI. there’s what ten or fifteen per-profile settings, setting them once is not that hard.

Thank you for your answer but I don’t know how to program so I wouldn’t be able to create a plugin.
Even so, I think a plugin would be overkill.
I just needed if someone could point me to the correct table in the database where the profile and its settings are stored.

ttrss_user_prefs, keyed on owner_uid.

Something like (warning - untested)
INSERT INTO ttrss_user_prefs (owner_uid, pref_name, value, profile)
SELECT <new_id> AS owner_uid, pref_name, value, profile
FROM ttrss_user_prefs 
WHERE owner_uid=<current_id>
perhaps?

Thank you! It is indeed!
I wasn’t finding them because the default profile is keyed as “null” after all, I was considering only profile 1.
And now, I’ve achieved what I needed! Thank you!!