WordPress database error: [Table 'wp_edict_tax_wallet_journal' already exists]
CREATE TABLE wp_edict_tax_wallet_journal (
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
ref_id BIGINT UNSIGNED NOT NULL,
date_utc DATETIME NOT NULL,
ref_type VARCHAR(128) NOT NULL,
amount DECIMAL(20,2) NOT NULL DEFAULT 0,
balance DECIMAL(20,2) NULL,
description TEXT NULL,
first_party_id BIGINT UNSIGNED NULL,
second_party_id BIGINT UNSIGNED NULL,
reason TEXT NULL,
raw_json LONGTEXT NULL,
synced_at_utc DATETIME NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY ref_id (ref_id),
KEY date_utc (date_utc),
KEY ref_type (ref_type)
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci