We no need to keep CustomerId of guest records in some cases (forum posts, reviews, blog comments, news comments) since the anonymous customer doesn't have any information that can be displayed, such as name, etc.
First, let's prepare a list of such tables (entities). Then for existing records we can set 0 or null in migration for these tables and remove guests.
We no need to keep
CustomerIdof guest records in some cases (forum posts, reviews, blog comments, news comments) since the anonymous customer doesn't have any information that can be displayed, such as name, etc.First, let's prepare a list of such tables (entities). Then for existing records we can set
0ornullin migration for these tables and remove guests.