how do I update an index in rails

# Step 1: Find the record by its ID
record = ModelName.find_by(id: your_id)

# Step 2: Update the desired attribute
record.update(attribute_name: new_value)

# Step 3: Save the changes to the database
record.save