Can you give me some hints how to add the column to the table?
As my database is called 'lime', I tried:
mysql> ALTER TABLE lime_notifications ADD hash VARCHAR( 64 );
A side (and maybe slightly offtopic) question: After login I now see the new logo, but the footer still says "Version 2.52+160920" which is the old version that I used. Is this maybe also because of the database which hasn't been updated/migrated when I switched to the new version? Also, when I go to the admin page and check the update settings it says the current version I can to update to using comfort-update is " 2.65.5 (170613)".
we have the same problem after comfort updating today.
mysql> alter table lime_notifications add column hash varchar(64) default '';
ERROR 1060 (42S21): Duplicate column name 'hash'
mysql> select * from lime_notifications;
+----+
+
+
+
+
+
+
+
+
+
+
| id | entity | entity_id | title | message | status | importance | display_class | created | first_read | hash |
+----+
+
+
+
+
+
+
+
+
+
+
| 1 | user | 1 | Datenbank-Update | Die Datenbank wurde von Version 257 auf Version 260 aktualisiert. | read | 1 | default | 2016-10-25 09:13:05 | 2016-10-25 09:14:23 | NULL |
| 2 | user | 11 | Datenbank-Update | Die Datenbank wurde von Version 257 auf Version 260 aktualisiert. | read | 1 | default | 2016-10-25 09:13:05 | 2016-10-25 09:14:03 | NULL |
| 3 | user | 12 | Datenbank-Update | Die Datenbank wurde von Version 257 auf Version 260 aktualisiert. | new | 1 | default | 2016-10-25 09:13:05 | NULL | NULL |
| 4 | user | 1 | Datenbank-Update | Die Datenbank wurde von Version 260 auf Version 263 aktualisiert. | new | 1 | default | 2017-11-08 13:18:12 | NULL | NULL |
| 5 | user | 11 | Datenbank-Update | Die Datenbank wurde von Version 260 auf Version 263 aktualisiert. | new | 1 | default | 2017-11-08 13:18:12 | NULL | NULL |
| 6 | user | 12 | Datenbank-Update | Die Datenbank wurde von Version 260 auf Version 263 aktualisiert. | new | 1 | default | 2017-11-08 13:18:12 | NULL | NULL |
| 7 | user | 16 | Datenbank-Update | Die Datenbank wurde von Version 260 auf Version 263 aktualisiert. | new | 1 | default | 2017-11-08 13:18:12 | NULL | NULL |
| 8 | user | 17 | Datenbank-Update | Die Datenbank wurde von Version 260 auf Version 263 aktualisiert. | new | 1 | default | 2017-11-08 13:18:12 | NULL | NULL |
+----+
+
+
+
+
+
+
+
+
+
+
8 rows in set (0.00 sec)
I already tried that before, didn't help. Restarted the server, tried another browser, no luck. Whatever miracle happened in the last 30 minutes, it works now.
"No, LimeSurvey still had the old database scheme cached. Most of the time this resolves itself after a few minutes but it would be nice if it did not happen in the first place."