It is possible by recreating table.Its work for me please follow following step:
- create temporary table using as select * from your table
- drop your table, create your table using modify column type
- now insert records from temp table to your newly created table
- drop temporary table
do all above steps in worker thread to reduce load on uithread