I have a table with a column \'hotel\'. The project is created in Laravel 5.4, so I used Migrations.
$table->string(\'hotel\', 50);
Thi
Change column's datatype from string to text and do not give length.
$table->text('hotel')->change();