Adding a column to a table in MySQL database

:partying_face: Mostly by luck I was able to resolve it this way:

// create column
$database->execute('ALTER TABLE ' . $tableName . ' ADD ' . $columnName . ' text');