разобралась, из бэкапа вытянула запросы.
-- ----------------------------
-- Table structure for `core_pfields_content`
-- ----------------------------
DROP TABLE IF EXISTS `core_pfields_content`;
CREATE TABLE `core_pfields_content` (
`member_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`field_1` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of core_pfields_content
-- ----------------------------
INSERT INTO `core_pfields_content` VALUES ('1', '');
-- ----------------------------
-- Table structure for `core_pfields_data`
-- ----------------------------
DROP TABLE IF EXISTS `core_pfields_data`;
CREATE TABLE `core_pfields_data` (
`pf_id` smallint(5) NOT NULL AUTO_INCREMENT,
`pf_content` text COLLATE utf8mb4_unicode_ci,
`pf_type` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`pf_not_null` tinyint(1) NOT NULL DEFAULT '0',
`pf_member_hide` tinyint(1) NOT NULL DEFAULT '0',
`pf_max_input` smallint(6) NOT NULL DEFAULT '0',
`pf_member_edit` tinyint(1) NOT NULL DEFAULT '0',
`pf_position` smallint(6) NOT NULL DEFAULT '0',
`pf_show_on_reg` tinyint(1) NOT NULL DEFAULT '0',
`pf_input_format` text COLLATE utf8mb4_unicode_ci,
`pf_admin_only` tinyint(1) NOT NULL DEFAULT '0',
`pf_format` text COLLATE utf8mb4_unicode_ci,
`pf_group_id` mediumint(4) unsigned NOT NULL DEFAULT '0',
`pf_search_type` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`pf_filtering` tinyint(1) NOT NULL DEFAULT '0',
`pf_multiple` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`pf_id`),
KEY `public_fields` (`pf_admin_only`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of core_pfields_data
-- ----------------------------
INSERT INTO `core_pfields_data` VALUES ('1', '[]', 'Editor', '0', '1', '0', '1', '0', '0', null, '0', null, '1', 'loose', '0', '0');
-- ----------------------------
-- Table structure for `core_pfields_groups`
-- ----------------------------
DROP TABLE IF EXISTS `core_pfields_groups`;
CREATE TABLE `core_pfields_groups` (
`pf_group_id` mediumint(4) unsigned NOT NULL AUTO_INCREMENT,
`pf_group_order` mediumint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`pf_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- ----------------------------
-- Records of core_pfields_groups
-- ----------------------------
INSERT INTO `core_pfields_groups` VALUES ('1', '0');