Faced the same issue while updating today. Adding back the post_id
column helped fix it.
Steps:
- enter the discourse container
./launcher enter app
- Enter
psql
sudo -u postgres psql discourse
- Add back the
post_id
column in thebookmarks
table
ALTER TABLE bookmarks ADD COLUMN post_id int;