Hi there,
is it possible to change the properties of an Albums on DB side?
I need to change the password on hundreds of albums. So working on DB side would speed up things.
Thanks
Elmar
Hi there,
is it possible to change the properties of an Albums on DB side?
I need to change the password on hundreds of albums. So working on DB side would speed up things.
Thanks
Elmar
Hi @elmex04, this is possible. Are you referring to changing the Access Codes for multiple albums?
To do this:
SELECT password FROM ALBUM WHERE id=888888;
enc_e1d320fad2d906ac92cf08ab644b6339
.UPDATE album SET password="enc_e1d320fad2d906ac92cf08ab644b6339";
Note this will replace or set the password across all albums! It’s won’t enable the password for albums that hadn’t previously had passwords enabled.
Hi @elmex04, the above steps assume that applying the same password directly to multiple albums is a good idea. You may be better served by applying a password to a parent Album Set instead. That will mean you only need to manage it in one place.