And to automatically add an account_id field to a form I used:
In ft_finalize_form,end. Suggest a default of 0 is set in case any of your code references account_id and, for some reason, there isn't one set yet?
HTHs someone...
Code:
$table_prefix = "ft_";
$query = "ALTER TABLE {$table_prefix}form_{$form_id}
ADD account_id mediumint(8) DEFAULT 0";
@mysql_query($query);
HTHs someone...