wp_addpipe_shortcodes
StaticStores addpipe shortcodes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑shortcode_id | INT(6) | NO |
| length | INT(11) | YES |
| quality | VARCHAR(5) | YES |
| env_code | CHAR(6) | YES |
| width | VARCHAR(25) | YES |
| height | INT(20) | YES |
| asv | SMALLINT(1) | YES |
| ao | SMALLINT(1) | YES |
| showMenu | SMALLINT(1) | YES |
| sis | SMALLINT(1) | YES |
| dup | SMALLINT(1) | YES |
| srec | SMALLINT(1) | YES |
| countdowntimer | INT(11) | YES |
| bgblur | SMALLINT(1) | YES |
| bgcol | VARCHAR(25) | YES |
| menucol | VARCHAR(25) | YES |
| post_id | INT(11) | YES |
| date | TIMESTAMP | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_addpipe_shortcodes` ( `shortcode_id` INT(6) NOT NULL AUTO_INCREMENT, `length` INT(11), `quality` VARCHAR(5), `env_code` CHAR(6), `width` VARCHAR(25), `height` INT(20), `asv` SMALLINT(1) DEFAULT 1, `ao` SMALLINT(1) DEFAULT 0, `showMenu` SMALLINT(1) DEFAULT 1, `sis` SMALLINT(1) DEFAULT 0, `dup` SMALLINT(1) DEFAULT 0, `srec` SMALLINT(1) DEFAULT 0, `countdowntimer` INT(11) DEFAULT 0, `bgblur` SMALLINT(1) DEFAULT 0, `bgcol` VARCHAR(25), `menucol` VARCHAR(25), `post_id` INT(11) DEFAULT 0, `date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`shortcode_id`) ) $charset_collate; "; // Execute the query using dbDelta dbDelta($sql);
Safe to delete?
If you have uninstalled Pipe Audio Video and Screen Recorder, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_addpipe_shortcodes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Pipe Audio Video and Screen Recorder