I have create new input "firstname" in umbraco mamber types admin form, and i can use it for create new mamber. but how to change the record value after create new mamber insert to umbracomamber table after i add firstname field.because the "firstname" field still get null value.
think you get the null value because nothing is set in DB which sounds correct.
If you need a default value you can update every member by using the MemberService API.
Just run it once to update each member with an empty string or something you want.
insert custom mamber types to umbracomamber table
I have create new input "firstname" in umbraco mamber types admin form, and i can use it for create new mamber. but how to change the record value after create new mamber insert to umbracomamber table after i add firstname field.because the "firstname" field still get null value.
Hi Riski,
think you get the null value because nothing is set in DB which sounds correct. If you need a default value you can update every member by using the MemberService API.
Just run it once to update each member with an empty string or something you want.
Regards David
is working on a reply...