{"table_name":"woocommerce_bolt_checkout_sessions","full_table_name":"wp_woocommerce_bolt_checkout_sessions","description":"Stores session data for tracking user or visitor state.","detection_method":"static","confidence":"high","create_sql":"CREATE TABLE wp_woocommerce_bolt_checkout_sessions ( ID BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, session_key varchar(191) NOT NULL, session_value longtext NOT NULL, created_at BIGINT UNSIGNED NOT NULL, updated_at BIGINT UNSIGNED NOT NULL, PRIMARY KEY (session_key), UNIQUE KEY ID (ID) ) $collate; \"; return $tables; } /** * Set up the database tables which the plugin needs to function. * * @since 2.0.12 * @static * @access public */ public function create_bolt_sessions_table() { /** * * Tables: * woocommerce_bolt_sessions - Table for storing various sessions in bolt plugin */ global $wpdb; $wpdb->hide_errors();","columns":[{"name":"ID","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"session_key","type":"varchar(191)","nullable":false,"primary_key":false},{"name":"session_value","type":"longtext","nullable":false,"primary_key":false},{"name":"created_at","type":"BIGINT UNSIGNED","nullable":false,"primary_key":false},{"name":"updated_at","type":"BIGINT UNSIGNED","nullable":false,"primary_key":false}],"plugin":{"slug":"bolt-checkout-woocommerce","name":"Bolt Checkout for WooCommerce","active_installs":100,"version":"2.21.1","wp_org_url":"https://wordpress.org/plugins/bolt-checkout-woocommerce/"}}