WordPress database error: [Duplicate key name 'user_id']CREATE TABLE wp_pa_wallet (
id BIGINT AUTO_INCREMENT PRIMARY KEY,
user_id BIGINT UNIQUE,
phone VARCHAR(20),
fullname VARCHAR(255),
created_at DATETIME,
KEY user_id (user_id)
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci
WordPress database error: [Duplicate key name 'request_id']CREATE TABLE wp_pa_withdrawals (
id BIGINT AUTO_INCREMENT PRIMARY KEY,
request_id VARCHAR(20) UNIQUE,
user_id BIGINT,
amount BIGINT,
admin_note TEXT,
status VARCHAR(20) DEFAULT 'Pending',
created_at DATETIME,
KEY request_id (request_id),
KEY user_id (user_id),
KEY status (status),
KEY created_at (created_at)
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci