change subactivity back to subactivity_id

This commit is contained in:
philipp lang 2022-11-16 01:37:56 +01:00
parent 71d4c2446b
commit e8d26ab774
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ class Member extends Model
'nameZusatz' => $this->further_address ?: '',
'konfessionId' => $this->confession_id,
'staatsangehoerigkeitText' => $this->other_country ?: '',
'ersteTaetigkeitId' => $this->first_activity ?: null,
'ersteUntergliederungId' => $this->first_subactivity ?: null,
'ersteTaetigkeitId' => $this->first_activity_id ?: null,
'ersteUntergliederungId' => $this->first_subactivity_id ?: null,
];
}