News

What you want to do is add a column that can be used to sort the rows in the table. For example, you could have a table that has two columns: msg (blob) and dt (timestamp).
ALTER TABLE `users` ADD `display_name` longtext NULL AS (CONCAT(last_name, ', ', first_name)); If I edit the generated script file and change the line to what is below, everything works correctly. No ...