how to add extra mysql code example
Example 1: create column mysql terminal
alter table icecream add column flavor varchar (20) ;
Example 2: add new column to the table mysql
ALTER TABLE `TABLE_NAME`
ADD `COLUMN_NAME` VARCHAR(50) NULL
AFTER `COLUMN_NAME_AFTER`;