how to update a table type attribute in mysql code example
Example 1: alter table column change data type to text mysql
ALTER TABLE tablename MODIFY columnname INTEGER;
Example 2: add column in mysq
ALTER TABLE Table_name
ADD Email varchar(255);