how to add new columns to mysql table code example
Example 1: create column mysql terminal
alter table icecream add column flavor varchar (20) ;
Example 2: mysql add column
ALTER TABLE table_name
ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];