{"slug":"bolt-checkout-woocommerce","name":"Bolt Checkout for WooCommerce","description":"Bring the world's fastest checkout to your WooCommerce site","author":"boltpay","active_installs":100,"version":"2.21.1","wp_org_url":"https://wordpress.org/plugins/bolt-checkout-woocommerce/","is_closed":false,"cleanup":{"has_uninstall_hook":true,"drops_tables_on_uninstall":false,"deletes_options_on_uninstall":false},"tables":[{"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","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}],"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();"},{"table_name":"woocommerce_bolt_external_customer_ids","full_table_name":"wp_woocommerce_bolt_external_customer_ids","description":"Stores woocommerce bolt external customer ids data created by this plugin.","detection_method":"static","confidence":"high","columns":[{"name":"ID","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"external_id","type":"varchar(191)","nullable":false,"primary_key":false},{"name":"customer_id","type":"varchar(32)","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}],"create_sql":"CREATE TABLE wp_woocommerce_bolt_external_customer_ids ( ID BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, external_id varchar(191) NOT NULL, customer_id varchar(32) NOT NULL, created_at BIGINT UNSIGNED NOT NULL, updated_at BIGINT UNSIGNED NOT NULL, PRIMARY KEY (external_id), UNIQUE KEY ID (ID) ) $collate; \"; dbDelta( $table );"},{"table_name":"woocommerce_bolt_session_customer_ids","full_table_name":"wp_woocommerce_bolt_session_customer_ids","description":"Stores session data for tracking user or visitor state.","detection_method":"static","confidence":"medium","columns":[{"name":"ID","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"order_reference","type":"varchar(16)","nullable":false,"primary_key":false},{"name":"customer_id","type":"varchar(32)","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}],"create_sql":"CREATE TABLE wp_woocommerce_bolt_session_customer_ids ( ID BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, order_reference varchar(16) NOT NULL, customer_id varchar(32) NOT NULL, created_at BIGINT UNSIGNED NOT NULL, updated_at BIGINT UNSIGNED NOT NULL, PRIMARY KEY (order_reference), UNIQUE KEY ID (ID) ) $collate; \"; dbDelta( $table );"}],"table_count":3}