Changing title_name on Existing Stream Field
Created 6 years ago by jcastillotx

So 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?

ryanthompson  —  6 years ago

Just use a migration to select the stream, edit the title_column and save.

jcastillotx  —  6 years ago

Which migration command will I use?