How do I add new column with no fields generated? It would be a new column added without the rows. I don't want NULL or empty values...
Is that possible?
This will create NULL values:
$sql = "ALTER TABLE translation ADD new_column VARCHAR( 255 )";