Updateprobleme 3.8.0 b4

Hallo,

nach dem Durchlauf der Updateprozedur bekommen wir folgende Fehlermeldung:

SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘d0226e25.piwik_brute_force_log’ doesn’t exist

Einloggen ist danach nicht mehr möglich.

Irgendjemand einen Tipp ?!?

Vielen Dank !
astd

Klingt für mich als wäre der Table im Update nicht korrekt erstellt worden.

Wenn du console core:update aufrufst, macht er dann irgendwas?

Ansonsten müsste dieses Query hier korrekt sein:

CREATE TABLE piwik_brute_force_log (
id_brute_force_log BIGINT(11) NOT NULL AUTO_INCREMENT,
ip_address VARCHAR(60) DEFAULT NULL,
attempted_at DATETIME NOT NULL,
PRIMARY KEY (id_brute_force_log),
INDEX index_ip_address (ip_address)
)

I got the same error message when updating from 3.7.0 to 3.8.0 final. The table exits though now. Everything else seems to be up and running as well. A bit confusing at the least…