UPDATE `{prefix}settings` SET `description` = "This option will apply for both web and mobile apps. If enabled, this field will show in sign up process as required field. If disabled, the field will not show in sign up." WHERE `key` = 'feature.require_avatar';
UPDATE `{prefix}settings` SET `description` = 'We recommend using an image with a resolution of 300x300 for the default user avatar image. If you have custom avatar for each gender at users -> manage genders. System will use the custom gender avatar.' WHERE `key` = 'feature.avatar_default';

INSERT INTO `{prefix}settings` (`key`, `name`, `description`, `value`, `params`, `type`, `order`, `group_id`, `group_sub_id`, `hidden`) VALUES
('feature.realtime_comment', 'Enable real-time comment', 'Available on both web and mobile web. Members can see comments from other users in real times. Please make sure the broadcast settings are properly configured to enable real-time functionality.', '0', '', 'checkbox', 29, 2, 4, 0);

-- iOS VoIP push (PushKit) — same Mobile general settings group as
-- the rest of the apple_*/android_* block. Required by the calling
-- plugin to wake a killed iOS app for incoming calls. See install.sql
-- for the canonical row definitions; this block is the upgrade-path
-- copy for sites already on 1.5.x.
INSERT INTO `{prefix}settings` (`key`, `name`, `description`, `value`, `params`, `type`, `order`, `group_id`, `group_sub_id`, `hidden`) VALUES
('mobile.apns_voip_enable', 'Enable iOS VoIP Push', 'When enabled and the APNs key fields below are filled, the server will send a PushKit notification to iOS devices so a killed app can display the system incoming-call UI.', '0', '', 'checkbox', 4, 3, 12, 0),
('mobile.apns_key_id', 'APNs Auth Key ID', 'The 10-character key identifier shown next to your APNs Auth Key in the Apple Developer portal (Keys → APNs Auth Key).', '', '', 'text', 5, 3, 12, 0),
('mobile.apns_team_id', 'Apple Team ID', 'Your 10-character Apple Developer Team ID.', '', '', 'text', 6, 3, 12, 0),
('mobile.apns_key_content', 'APNs Auth Key Content (.p8)', 'The full text of the .p8 file downloaded from the Apple Developer portal, including the -----BEGIN PRIVATE KEY----- and -----END PRIVATE KEY----- lines.', '', '', 'textarea', 7, 3, 12, 0);