I manually changed the column name it was there but wrong from migration following these steps
MODIFYING TABLE COLUMNS IN PHPMYADMIN
This tutorial will demonstrate how to modify existing MySQL database tables in phpMyAdmin.
WARNING! Be careful changing certain aspects of table columns, because it is possible to lose data. For example, if you change the maximum length of a field from 20 characters to 15 characters, any data in that column that is longer than 15 characters will be truncated (chopped off).
Begin by accessing phpMyAdmin via cPanel.
- Select the database you want to work with (by clicking on database name in the left column of the phpMyAdmin home page).
- Once inside a database, you will see a list of tables. Click on the table you wish to modify.
- Inside the table, you will see a list of columns. To the right of the column name, you will see a link called “Change” under the Actions. Click on the Change link for the column you wish to modify.
- You can change a variety of things, including the name of the column, length of the field (maximum number of characters allowed), default value, and more.
- Once you are ready to proceed, click on Save to save the changes.