You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user table still maintains a registration_date field which is a functional duplicate of user.created_at.
Remove registration_date in the entity.
add a migration to deal with the field from 1.11.x, verifying that an empty created_at will be filled by the registration_date value before deletion.
verify (including in backup/restore code) that this doesn't cause issues with user imports, user exports, cronjobs or other places where registration_date might be used. In such cases, just replace by created_at.
The text was updated successfully, but these errors were encountered:
The
user
table still maintains aregistration_date
field which is a functional duplicate ofuser.created_at
.registration_date
in the entity.created_at
will be filled by theregistration_date
value before deletion.registration_date
might be used. In such cases, just replace bycreated_at
.The text was updated successfully, but these errors were encountered: