You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An exception occurred while executing '
SELECT
sch.id AS id,
sch.title AS title,
sch.start AS date,
DATEDIFF(sch.start ,NOW()) AS daysDiff,
mchc.icon AS icon,
sch.body AS body
FROM my_schedule sch
JOIN my_schedule_calendar mchc
ON mchc.id = sch.calendar_id
WHERE
sch.start < NOW() + INTERVAL ? DAY -- include past
AND sch.deleted = 0
AND mchc.deleted = 0
LIMIT 50' with params [60]:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'sch.title' in 'field list'
I'm unsure as how to try and proceed - if I knew how to add the missing column I would try that and see what the result is by am clueless as to how to do that.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After installing (Docker - following steps on https://volmarg.github.io/docs/general/installation/docker/information by @rwaight), launching, registering a new user and logging in I'm immediately presented with an HTTP 500 Internal Server Error:
I'm unsure as how to try and proceed - if I knew how to add the missing column I would try that and see what the result is by am clueless as to how to do that.
Beta Was this translation helpful? Give feedback.
All reactions