{"id":12140,"date":"2022-09-07T09:34:35","date_gmt":"2022-09-07T15:34:35","guid":{"rendered":"https:\/\/ugit.siua.ac.cr\/?p=12140"},"modified":"2022-09-07T11:57:02","modified_gmt":"2022-09-07T17:57:02","slug":"nextcloud-tablas-de-app-calendar","status":"publish","type":"post","link":"https:\/\/sada.services\/?p=12140","title":{"rendered":"Nextcloud: Tablas de app Calendar"},"content":{"rendered":"\n<ul class=\"wp-block-list\"><li>https:\/\/help.nextcloud.com\/t\/missing-column-calanderdata-in-database\/45020\/2<\/li><li>Ejecutar<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>\n\n--\n-- Table structure for table `oc_calendar_appt_bookings`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_appt_bookings`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_appt_bookings` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `appt_config_id` bigint unsigned NOT NULL,\n  `created_at` int NOT NULL,\n  `token` varchar(32) COLLATE utf8mb4_bin NOT NULL,\n  `display_name` varchar(128) COLLATE utf8mb4_bin NOT NULL,\n  `description` longtext COLLATE utf8mb4_bin,\n  `email` varchar(128) COLLATE utf8mb4_bin NOT NULL,\n  `start` int NOT NULL,\n  `end` int NOT NULL,\n  `timezone` varchar(32) COLLATE utf8mb4_bin NOT NULL,\n  `confirmed` tinyint(1) DEFAULT '0',\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `cal_appt_bk_token_uniq_idx` (`token`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_appt_bookings`\n--\n\nLOCK TABLES `oc_calendar_appt_bookings` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_appt_bookings` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_appt_bookings` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_appt_configs`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_appt_configs`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_appt_configs` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `token` varchar(128) COLLATE utf8mb4_bin NOT NULL,\n  `name` varchar(128) COLLATE utf8mb4_bin NOT NULL,\n  `description` longtext COLLATE utf8mb4_bin,\n  `location` longtext COLLATE utf8mb4_bin,\n  `visibility` varchar(10) COLLATE utf8mb4_bin NOT NULL,\n  `user_id` varchar(64) COLLATE utf8mb4_bin NOT NULL,\n  `target_calendar_uri` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `calendar_freebusy_uris` longtext COLLATE utf8mb4_bin,\n  `availability` longtext COLLATE utf8mb4_bin,\n  `start` int DEFAULT NULL,\n  `end` int DEFAULT NULL,\n  `length` int NOT NULL,\n  `increment` int NOT NULL,\n  `preparation_duration` int NOT NULL DEFAULT '0',\n  `followup_duration` int NOT NULL DEFAULT '0',\n  `time_before_next_slot` int DEFAULT NULL,\n  `daily_max` int DEFAULT NULL,\n  `future_limit` int DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `cal_appt_token_uniq_idx` (`token`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_appt_configs`\n--\n\nLOCK TABLES `oc_calendar_appt_configs` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_appt_configs` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_appt_configs` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_invitations`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_invitations`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_invitations` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `uid` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `recurrenceid` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `attendee` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `organizer` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `sequence` bigint unsigned DEFAULT NULL,\n  `token` varchar(60) COLLATE utf8mb4_bin NOT NULL,\n  `expiration` bigint unsigned NOT NULL,\n  PRIMARY KEY (`id`),\n  KEY `calendar_invitation_tokens` (`token`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_invitations`\n--\n\nLOCK TABLES `oc_calendar_invitations` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_invitations` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_invitations` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_reminders`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_reminders`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_reminders` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `calendar_id` bigint NOT NULL,\n  `object_id` bigint NOT NULL,\n  `is_recurring` smallint DEFAULT NULL,\n  `uid` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `recurrence_id` bigint unsigned DEFAULT NULL,\n  `is_recurrence_exception` smallint NOT NULL,\n  `event_hash` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `alarm_hash` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `type` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `is_relative` smallint NOT NULL,\n  `notification_date` bigint unsigned NOT NULL,\n  `is_repeat_based` smallint NOT NULL,\n  PRIMARY KEY (`id`),\n  KEY `calendar_reminder_objid` (`object_id`),\n  KEY `calendar_reminder_uidrec` (`uid`,`recurrence_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_reminders`\n--\n\nLOCK TABLES `oc_calendar_reminders` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_reminders` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_reminders` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_resources`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_resources`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_resources` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `backend_id` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `resource_id` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `email` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `displayname` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `group_restrictions` varchar(4000) COLLATE utf8mb4_bin DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `calendar_resources_bkdrsc` (`backend_id`,`resource_id`),\n  KEY `calendar_resources_email` (`email`),\n  KEY `calendar_resources_name` (`displayname`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_resources`\n--\n\nLOCK TABLES `oc_calendar_resources` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_resources` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_resources` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_resources_md`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_resources_md`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_resources_md` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `resource_id` bigint unsigned NOT NULL,\n  `key` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `value` varchar(4000) COLLATE utf8mb4_bin DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `calendar_resources_md_idk` (`resource_id`,`key`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_resources_md`\n--\n\nLOCK TABLES `oc_calendar_resources_md` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_resources_md` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_resources_md` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_rooms`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_rooms`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_rooms` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `backend_id` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `resource_id` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `email` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `displayname` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `group_restrictions` varchar(4000) COLLATE utf8mb4_bin DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `calendar_rooms_bkdrsc` (`backend_id`,`resource_id`),\n  KEY `calendar_rooms_email` (`email`),\n  KEY `calendar_rooms_name` (`displayname`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_rooms`\n--\n\nLOCK TABLES `oc_calendar_rooms` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_rooms` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_rooms` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendar_rooms_md`\n--\n\nDROP TABLE IF EXISTS `oc_calendar_rooms_md`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendar_rooms_md` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `room_id` bigint unsigned NOT NULL,\n  `key` varchar(255) COLLATE utf8mb4_bin NOT NULL,\n  `value` varchar(4000) COLLATE utf8mb4_bin DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `calendar_rooms_md_idk` (`room_id`,`key`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendar_rooms_md`\n--\n\nLOCK TABLES `oc_calendar_rooms_md` WRITE;\n\/*!40000 ALTER TABLE `oc_calendar_rooms_md` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendar_rooms_md` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendarchanges`\n--\n\nDROP TABLE IF EXISTS `oc_calendarchanges`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendarchanges` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `uri` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `synctoken` int unsigned NOT NULL DEFAULT '1',\n  `calendarid` bigint NOT NULL,\n  `operation` smallint NOT NULL,\n  `calendartype` int NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`),\n  KEY `calid_type_synctoken` (`calendarid`,`calendartype`,`synctoken`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendarchanges`\n--\n\nLOCK TABLES `oc_calendarchanges` WRITE;\n\/*!40000 ALTER TABLE `oc_calendarchanges` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendarchanges` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendarobjects`\n--\n\nDROP TABLE IF EXISTS `oc_calendarobjects`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendarobjects` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `calendardata` longblob,\n  `uri` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `calendarid` bigint unsigned NOT NULL,\n  `lastmodified` int unsigned DEFAULT NULL,\n  `etag` varchar(32) COLLATE utf8mb4_bin DEFAULT NULL,\n  `size` bigint unsigned NOT NULL,\n  `componenttype` varchar(8) COLLATE utf8mb4_bin DEFAULT NULL,\n  `firstoccurence` bigint unsigned DEFAULT NULL,\n  `lastoccurence` bigint unsigned DEFAULT NULL,\n  `uid` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `classification` int DEFAULT '0',\n  `calendartype` int NOT NULL DEFAULT '0',\n  `deleted_at` int unsigned DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `calobjects_index` (`calendarid`,`calendartype`,`uri`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendarobjects`\n--\n\nLOCK TABLES `oc_calendarobjects` WRITE;\n\/*!40000 ALTER TABLE `oc_calendarobjects` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendarobjects` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendarobjects_props`\n--\n\nDROP TABLE IF EXISTS `oc_calendarobjects_props`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendarobjects_props` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `calendarid` bigint NOT NULL DEFAULT '0',\n  `objectid` bigint unsigned NOT NULL DEFAULT '0',\n  `name` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `parameter` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `value` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `calendartype` int NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`),\n  KEY `calendarobject_index` (`objectid`,`calendartype`),\n  KEY `calendarobject_name_index` (`name`,`calendartype`),\n  KEY `calendarobject_value_index` (`value`,`calendartype`),\n  KEY `calendarobject_calid_index` (`calendarid`,`calendartype`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendarobjects_props`\n--\n\nLOCK TABLES `oc_calendarobjects_props` WRITE;\n\/*!40000 ALTER TABLE `oc_calendarobjects_props` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendarobjects_props` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendars`\n--\n\nDROP TABLE IF EXISTS `oc_calendars`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendars` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `principaluri` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `displayname` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `uri` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `synctoken` int unsigned NOT NULL DEFAULT '1',\n  `description` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `calendarorder` int unsigned NOT NULL DEFAULT '0',\n  `calendarcolor` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `timezone` longtext COLLATE utf8mb4_bin,\n  `components` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL,\n  `transparent` smallint NOT NULL DEFAULT '0',\n  `deleted_at` int unsigned DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `calendars_index` (`principaluri`,`uri`),\n  KEY `cals_princ_del_idx` (`principaluri`,`deleted_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendars`\n--\n\nLOCK TABLES `oc_calendars` WRITE;\n\/*!40000 ALTER TABLE `oc_calendars` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendars` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Table structure for table `oc_calendarsubscriptions`\n--\n\nDROP TABLE IF EXISTS `oc_calendarsubscriptions`;\n\/*!40101 SET @saved_cs_client     = @@character_set_client *\/;\n\/*!50503 SET character_set_client = utf8mb4 *\/;\nCREATE TABLE `oc_calendarsubscriptions` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `uri` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `principaluri` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `displayname` varchar(100) COLLATE utf8mb4_bin DEFAULT NULL,\n  `refreshrate` varchar(10) COLLATE utf8mb4_bin DEFAULT NULL,\n  `calendarorder` int unsigned NOT NULL DEFAULT '0',\n  `calendarcolor` varchar(255) COLLATE utf8mb4_bin DEFAULT NULL,\n  `striptodos` smallint DEFAULT NULL,\n  `stripalarms` smallint DEFAULT NULL,\n  `stripattachments` smallint DEFAULT NULL,\n  `lastmodified` int unsigned DEFAULT NULL,\n  `synctoken` int unsigned NOT NULL DEFAULT '1',\n  `source` longtext COLLATE utf8mb4_bin,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `calsub_index` (`principaluri`,`uri`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;\n\/*!40101 SET character_set_client = @saved_cs_client *\/;\n\n--\n-- Dumping data for table `oc_calendarsubscriptions`\n--\n\nLOCK TABLES `oc_calendarsubscriptions` WRITE;\n\/*!40000 ALTER TABLE `oc_calendarsubscriptions` DISABLE KEYS *\/;\n\/*!40000 ALTER TABLE `oc_calendarsubscriptions` ENABLE KEYS *\/;\nUNLOCK TABLES;\n\nED NOT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;\n\nCREATE TABLE oc_calendar_resources (\nid bigint(20) UNSIGNED NOT NULL,\nbackend_id varchar(64) COLLATE utf8_bin DEFAULT NULL,\nresource_id varchar(64) COLLATE utf8_bin DEFAULT NULL,\nemail varchar(255) COLLATE utf8_bin DEFAULT NULL,\ndisplayname varchar(255) COLLATE utf8_bin DEFAULT NULL,\ngroup_restrictions varchar(4000) COLLATE utf8_bin DEFAULT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;\n\nCREATE TABLE oc_calendar_rooms (\nid bigint(20) UNSIGNED NOT NULL,\nbackend_id varchar(64) COLLATE utf8_bin DEFAULT NULL,\nresource_id varchar(64) COLLATE utf8_bin DEFAULT NULL,\nemail varchar(255) COLLATE utf8_bin DEFAULT NULL,\ndisplayname varchar(255) COLLATE utf8_bin DEFAULT NULL,\ngroup_restrictions varchar(4000) COLLATE utf8_bin DEFAULT NULL\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>https:\/\/help.nextcloud.com\/t\/missing-column-calanderdata-in-database\/45020\/2 Ejecutar<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35],"tags":[428,36],"class_list":["post-12140","post","type-post","status-publish","format-standard","hentry","category-nextcloud","tag-calendar","tag-nextcloud"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"_links":{"self":[{"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts\/12140","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=12140"}],"version-history":[{"count":4,"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts\/12140\/revisions"}],"predecessor-version":[{"id":12144,"href":"https:\/\/sada.services\/index.php?rest_route=\/wp\/v2\/posts\/12140\/revisions\/12144"}],"wp:attachment":[{"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12140"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=12140"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sada.services\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=12140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}