wp_agoda_settings
StaticStores agoda settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| setting_id | int(11) | NO |
| affiliate_id | VARCHAR(255) | YES |
| max_links_per_page | int(11) | YES |
| disable_keyword_conversion | int(4) | YES |
| exclude_post_ids | VARCHAR | YES |
| exclude_cat_ids | VARCHAR | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_agoda_settings` ( `setting_id` int(11) NOT NULL DEFAULT '1', `affiliate_id` VARCHAR(255) NULL DEFAULT 'XXXXXX', `max_links_per_page` int(11) DEFAULT 10, `disable_keyword_conversion` int(4) DEFAULT 0, `exclude_post_ids` VARCHAR (255) NULL, `exclude_cat_ids` VARCHAR (255) DEFAULT '' ) ENGINE
Safe to delete?
If you have uninstalled Old-to-New Agoda Link Converter, 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_agoda_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Old-to-New Agoda Link Converter