{"table_name":"infinite_uploads_media_folders","full_table_name":"wp_infinite_uploads_media_folders","description":"Stores infinite uploads media folders data created by this plugin.","detection_method":"static","confidence":"medium","create_sql":"CREATE TABLE wp_infinite_uploads_media_folders ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, parent_id BIGINT UNSIGNED NOT NULL DEFAULT 0, sort_order INT UNSIGNED NOT NULL DEFAULT 0, created_by BIGINT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, color VARCHAR(20) NOT NULL DEFAULT '', PRIMARY KEY (id), KEY parent_id (parent_id), KEY sort_order (sort_order) ) {$charset_collate};\"; // Media-to-folder relationship table. $sql .= \"\\nCREATE TABLE wp_infinite_uploads_media_folder_relationships ( folder_id BIGINT UNSIGNED NOT NULL, attachment_id BIGINT UNSIGNED NOT NULL, PRIMARY KEY (folder_id, attachment_id), KEY attachment_id (attachment_id) ) {$charset_collate};\"; if ( ! function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta( $sql );","columns":[{"name":"id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"name","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"parent_id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":false},{"name":"sort_order","type":"INT UNSIGNED","nullable":false,"primary_key":false},{"name":"created_by","type":"BIGINT UNSIGNED","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},{"name":"color","type":"VARCHAR(20)","nullable":false,"primary_key":false},{"name":"attachment_id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":false}],"plugin":{"slug":"infinite-uploads","name":"Infinite Uploads – Offload Media and Video to Cloud Storage","active_installs":800,"version":"3.2.5","wp_org_url":"https://wordpress.org/plugins/infinite-uploads/"}}