XF 2.0 xf_error_log' doesn't exist in src/XF/Db/AbstractStatement.php at line 212

Tapsta

Member
I wanted to upgrade but I get an error. I have repaired all the tables.
Can you help me ?

1533727683307.webp

+ DB has not xf_error_log.

1533727948554.webp
 
Poblem solved ;


Code:
CREATE TABLE xf_error_log (
        error_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
        exception_date INT UNSIGNED NOT NULL,
        user_id INT UNSIGNED DEFAULT NULL,
        ip_address VARBINARY(16) NOT NULL DEFAULT '',
        exception_type VARCHAR(75) NOT NULL,
        message TEXT NOT NULL,
        filename VARCHAR(255) NOT NULL,
        line INT UNSIGNED NOT NULL,
        trace_string MEDIUMTEXT NOT NULL,
        request_state MEDIUMBLOB NOT NULL,
        PRIMARY KEY (error_id),
        KEY exception_date (exception_date)
    ) ENGINE = InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci

If you get an error, run the following command and try the above code again


Code:
DROP TABLE xf_error_log
 
Top Bottom