{"table_name":"kc_uu_history","full_table_name":"wp_kc_uu_history","description":"Stores kc uu history data created by this plugin.","detection_method":"static","confidence":"medium","create_sql":"CREATE TABLE wp_kc_uu_history ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, entry_id VARCHAR(50) NOT NULL, date DATETIME NOT NULL, search_for TEXT NOT NULL, replace_with TEXT NOT NULL, tables TEXT NOT NULL, case_insensitive TINYINT(1) NOT NULL DEFAULT 0, replace_guids TINYINT(1) NOT NULL DEFAULT 0, total_changes INT UNSIGNED NOT NULL DEFAULT 0, total_updates INT UNSIGNED NOT NULL DEFAULT 0, undone TINYINT(1) NOT NULL DEFAULT 0, details LONGTEXT, PRIMARY KEY (id), UNIQUE KEY entry_id (entry_id), KEY date (date) ) $collate; CREATE TABLE wp_kc_uu_profiles ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL, search_for TEXT NOT NULL, replace_with TEXT NOT NULL, select_tables TEXT NOT NULL, case_insensitive VARCHAR(5) NOT NULL DEFAULT 'off', replace_guids VARCHAR(5) NOT NULL DEFAULT 'off', PRIMARY KEY (id), UNIQUE KEY name (name) ) $collate; \"; return $tables; } /** * Create files/ directory * * @since 1.2 */ public static function create_files() { // Want to bypass creation of files? if ( apply_filters( 'kc_uu_install_skip_create_files', false ) ) { return; } $files = array( array( 'base' => KC_UU_LOG_DIR, 'file' => '.htaccess', 'content' => 'deny from all', ), array( 'base' => KC_UU_LOG_DIR, 'file' => 'index.html', 'content' => '', ), );","columns":[{"name":"id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"entry_id","type":"VARCHAR(50)","nullable":false,"primary_key":false},{"name":"date","type":"DATETIME","nullable":false,"primary_key":false},{"name":"search_for","type":"TEXT","nullable":false,"primary_key":false},{"name":"replace_with","type":"TEXT","nullable":false,"primary_key":false},{"name":"tables","type":"TEXT","nullable":false,"primary_key":false},{"name":"case_insensitive","type":"TINYINT(1)","nullable":false,"primary_key":false},{"name":"replace_guids","type":"TINYINT(1)","nullable":false,"primary_key":false},{"name":"total_changes","type":"INT UNSIGNED","nullable":false,"primary_key":false},{"name":"total_updates","type":"INT UNSIGNED","nullable":false,"primary_key":false},{"name":"undone","type":"TINYINT(1)","nullable":false,"primary_key":false},{"name":"details","type":"LONGTEXT","nullable":true,"primary_key":false},{"name":"name","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"search_for","type":"TEXT","nullable":false,"primary_key":false},{"name":"replace_with","type":"TEXT","nullable":false,"primary_key":false},{"name":"select_tables","type":"TEXT","nullable":false,"primary_key":false},{"name":"case_insensitive","type":"VARCHAR(5)","nullable":false,"primary_key":false},{"name":"replace_guids","type":"VARCHAR(5)","nullable":false,"primary_key":false}],"plugin":{"slug":"update-urls","name":"Search & Replace Everything – Quick and Easy Way to Find and Replace Text, Links","active_installs":20000,"version":"1.4.6","wp_org_url":"https://wordpress.org/plugins/update-urls/"}}