As much as I prefer to avoid serialized data when possible, there are cases where it makes sense. What is the general purpose of this move? What are the repercussions for modules which use this column in D6? Does core use this column?
..chrisxj
Hi,
Two steps
a) We remove $user->data handling code from D6 core. No save, no load. New
installs won't have this column.
b) D7 will drop the $user->data if it exists. (SELECT * FROM user,
$account = db_fetch_array, if(isset($account['data'])) -- no need for DDL
to check for a column).
This way D6 contribs can clean up $user->data and migrate to their own
tables.
Regards
NK