Debe crear una nueva migración, registrarla con composer du Comando y ejecuta php artisan migrate comando para cambiar el tipo de la columna:
Schema::table('the_table_name', function (Blueprint $table) {
$table->string('hotel', 255)->change();
});