diff --git a/app/conference_centers/app_config.php b/app/conference_centers/app_config.php index 27cb139736..8f5a6b6504 100644 --- a/app/conference_centers/app_config.php +++ b/app/conference_centers/app_config.php @@ -288,7 +288,7 @@ $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'end_epoch'; $z++; - $y = 4; //table array index + $y = 3; //table array index $z = 0; //field array index $apps[$x]['db'][$y]['table'] = 'v_conference_session_details'; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'domain_uuid'; @@ -351,7 +351,7 @@ $z++; /* - $y = 1; //table array index + $y = 4; //table array index $z = 0; //field array index $apps[$x]['db'][$y]['table'] = 'v_conference_center_users'; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'conference_user_uuid'; diff --git a/app/meetings/app_config.php b/app/meetings/app_config.php index 5af5dbe429..7dd84101fe 100644 --- a/app/meetings/app_config.php +++ b/app/meetings/app_config.php @@ -47,6 +47,38 @@ //schema details $y = 0; //table array index $z = 0; //field array index + $apps[$x]['db'][$y]['table'] = 'v_meetings'; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'domain_uuid'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; + $apps[$x]['db'][$y]['fields'][$z]['key'] = 'foreign'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'meeting_uuid'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; + $apps[$x]['db'][$y]['fields'][$z]['key'] = 'foreign'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'moderator_pin'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enter the moderator PIN number.'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'participant_pin'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enter the participant PIN number.'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'enabled'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Select to enable or disable the meeting.'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'description'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Description.for the meeting description.'; + $z++; + + $y = 1; //table array index + $z = 0; //field array index $apps[$x]['db'][$y]['table'] = 'v_meeting_users'; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'domain_uuid'; $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; @@ -73,34 +105,4 @@ $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'user_uuid'; $z++; - $y = 1; //table array index - $z = 0; //field array index - $apps[$x]['db'][$y]['table'] = 'v_meeting_pins'; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'domain_uuid'; - $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; - $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; - $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; - $apps[$x]['db'][$y]['fields'][$z]['key'] = 'foreign'; - $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'meeting_pin_uuid'; - $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; - $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; - $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; - $apps[$x]['db'][$y]['fields'][$z]['key'] = 'primary'; - $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'meeting_uuid'; - $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; - $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; - $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; - $apps[$x]['db'][$y]['fields'][$z]['key'] = 'foreign'; - $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'member_pin'; - $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; - $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enter the PIN number.'; - $z++; - $apps[$x]['db'][$y]['fields'][$z]['name'] = 'member_type'; - $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; - $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = 'Enter the member type.'; - $z++; - ?> \ No newline at end of file