wp_digibill_plugin

Static

Stores digibill plugin data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
usernamevarchar(20)YES
emailvarchar(50)YES
phonevarchar(15)YES
passwordvarchar(20)YES
statusint(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.