wp_account
StaticStores account data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| VARCHAR(70) | NO | |
| VARCHAR(70) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS "account" ("id" INT NOT NULL AUTO_INCREMENT, "email" VARCHAR(70) NOT NULL UNIQUE, PRIMARY KEY ("id")) AUTO_INCREMENT = 200 EOD, 'mssql' => <<<EOD CREATE TABLE [account] ([id] INT NOT NULL AUTO_INCREMENT, [email] VARCHAR(70) NOT NULL UNIQUE, PRIMARY KEY ([id])) AUTO_INCREMENT = 200 EOD, 'oracle' => <<<EOD CREATE TABLE "account" ("id" INT NOT NULL AUTO_INCREMENT, "email" VARCHAR(70) NOT NULL UNIQUE, PRIMARY KEY ("id")) AUTO_INCREMENT = 200 EOD ], $this->database->queryString );Safe to delete?
If you have uninstalled Crudiator, 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_account`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.