I found many tutorials for adding columns to Identity tables (which I successfully moved to the application database) with database migrations, however I understand that this is not applicable in database bush projects. So ... how to add columns to the aspnetusers table in the first database project?
I would like to declare a column type bit named Is RegComplete, which is initially set to 0, and then at some point when the user has completed a few more tasks, set the value to 1.
source share