wp_digibill_plugin
StaticStores digibill plugin data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| username | varchar(20) | YES |
| varchar(50) | YES | |
| phone | varchar(15) | YES |
| password | varchar(20) | YES |
| status | int(5) | YES |
CREATE TABLE Statement
CREATE TABLE `wp_digibill_plugin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(20) DEFAULT NULL, `email` varchar(50) DEFAULT NULL, `phone` varchar(15) DEFAULT NULL, `password` varchar(20) DEFAULT NULL, `status` int(5) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled Digi Bill, 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_digibill_plugin`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.