Changing title_name on Existing Stream Field
Created 6 years ago by jcastillotxSo I have a field:
'sponsor' => [
'type' => 'anomaly.field_type.multiple',
'config' => [
'related' => SponsorModel::class,
'mode' => 'lookup',
'title_name' => 'sponsor_email',
]
],
And I want to update the title_name to sponsor_display_name. What is the easiest way to do that?
jcastillotx
—
6 years ago
Which migration command will I use?
Just use a migration to select the stream, edit the
title_column
and save.