{"slug":"floatyfaq","name":"FloatyFAQ","description":"Interactive FAQ system with floating balloon, categories, search and statistics.","author":"Mario Merola","active_installs":0,"version":"2.0.3","wp_org_url":"https://wordpress.org/plugins/floatyfaq/","is_closed":false,"cleanup":{"has_uninstall_hook":false,"drops_tables_on_uninstall":false,"deletes_options_on_uninstall":false},"tables":[{"table_name":"floatyfaq_analytics","full_table_name":"wp_floatyfaq_analytics","description":"Stores analytics or statistics data.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"faq_id","type":"bigint(20) unsigned","nullable":false,"primary_key":false},{"name":"action_type","type":"varchar(50)","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE `wp_floatyfaq_analytics` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `faq_id` bigint(20) unsigned NOT NULL, `action_type` varchar(50) NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `faq_id` (`faq_id`), KEY `created_at` (`created_at`) ) $charset \");"},{"table_name":"floatyfaq_cache","full_table_name":"wp_floatyfaq_cache","description":"A cache table that stores temporary computed or fetched data.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"cache_key","type":"varchar(255)","nullable":false,"primary_key":false},{"name":"cache_value","type":"longtext","nullable":false,"primary_key":false},{"name":"expires_at","type":"datetime","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE IF NOT EXISTS `wp_floatyfaq_cache` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `cache_key` varchar(255) NOT NULL, `cache_value` longtext NOT NULL, `expires_at` datetime NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `cache_key` (`cache_key`), KEY `expires_at` (`expires_at`) ) $charset \");"},{"table_name":"floatyfaq_categories","full_table_name":"wp_floatyfaq_categories","description":"Stores floatyfaq categories data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"name","type":"varchar(255)","nullable":false,"primary_key":false},{"name":"slug","type":"varchar(255)","nullable":false,"primary_key":false},{"name":"description","type":"text","nullable":true,"primary_key":false},{"name":"sort_order","type":"int(11)","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE `wp_floatyfaq_categories` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `description` text, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), KEY `sort_order` (`sort_order`) ) $charset \");"},{"table_name":"floatyfaq_items","full_table_name":"wp_floatyfaq_items","description":"Stores floatyfaq items data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"category_id","type":"bigint(20) unsigned","nullable":false,"primary_key":false},{"name":"question","type":"text","nullable":false,"primary_key":false},{"name":"answer","type":"longtext","nullable":false,"primary_key":false},{"name":"url","type":"varchar(500)","nullable":true,"primary_key":false},{"name":"sort_order","type":"int(11)","nullable":false,"primary_key":false},{"name":"views","type":"int(11)","nullable":false,"primary_key":false},{"name":"active","type":"tinyint(1)","nullable":false,"primary_key":false},{"name":"scheduled_start","type":"datetime","nullable":true,"primary_key":false},{"name":"scheduled_end","type":"datetime","nullable":true,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false},{"name":"updated_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE `wp_floatyfaq_items` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint(20) unsigned NOT NULL, `question` text NOT NULL, `answer` longtext NOT NULL, `url` varchar(500) DEFAULT NULL, `sort_order` int(11) NOT NULL DEFAULT 0, `views` int(11) NOT NULL DEFAULT 0, `active` tinyint(1) NOT NULL DEFAULT 1, `scheduled_start` datetime DEFAULT NULL, `scheduled_end` datetime DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `category_id` (`category_id`), KEY `sort_order` (`sort_order`), KEY `active` (`active`), KEY `scheduled` (`scheduled_start`, `scheduled_end`) ) $charset \");"},{"table_name":"floatyfaq_ratings","full_table_name":"wp_floatyfaq_ratings","description":"Stores floatyfaq ratings data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"faq_id","type":"bigint(20) unsigned","nullable":false,"primary_key":false},{"name":"rating","type":"tinyint(1)","nullable":false,"primary_key":false},{"name":"user_ip","type":"varchar(45)","nullable":true,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE IF NOT EXISTS `wp_floatyfaq_ratings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `faq_id` bigint(20) unsigned NOT NULL, `rating` tinyint(1) NOT NULL, `user_ip` varchar(45) DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `faq_id` (`faq_id`), KEY `created_at` (`created_at`) ) $charset \");"},{"table_name":"floatyfaq_settings","full_table_name":"wp_floatyfaq_settings","description":"Stores floatyfaq settings data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"setting_key","type":"varchar(100)","nullable":false,"primary_key":false},{"name":"setting_value","type":"longtext","nullable":true,"primary_key":false}],"create_sql":"CREATE TABLE `wp_floatyfaq_settings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `setting_key` varchar(100) NOT NULL, `setting_value` longtext, PRIMARY KEY (`id`), UNIQUE KEY `setting_key` (`setting_key`) ) $charset \");"},{"table_name":"floatyfaq_translations","full_table_name":"wp_floatyfaq_translations","description":"Stores floatyfaq translations data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"bigint(20) unsigned","nullable":false,"primary_key":true},{"name":"faq_id","type":"bigint(20) unsigned","nullable":false,"primary_key":false},{"name":"language","type":"varchar(10)","nullable":false,"primary_key":false},{"name":"question","type":"text","nullable":false,"primary_key":false},{"name":"answer","type":"longtext","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false},{"name":"updated_at","type":"datetime","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE IF NOT EXISTS `wp_floatyfaq_translations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `faq_id` bigint(20) unsigned NOT NULL, `language` varchar(10) NOT NULL, `question` text NOT NULL, `answer` longtext NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `faq_language` (`faq_id`, `language`), KEY `language` (`language`) ) $charset \");"}],"table_count":7}