# 업데이트 후 'boomarks.post\_id' 열이 정의되지 않음

**URL:** https://meta.discourse.org/t/undefined-column-boomarks-post-id-after-update/245365
**Category:** Self-hosting
**Created:** [11월 12, 2022, 10:29오전 UTC](https://meta.discourse.org/t/undefined-column-boomarks-post-id-after-update/245365 "2022-11-12T10:29:25Z")
**Posts on this page:** 1
**Showing post:** 5

<div class="post-metadata">

### Author: ![codingCoffee](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codingcoffee/32/281892_2.png) [@codingCoffee](https://meta.discourse.org/u/codingCoffee)
#### Post date: [11월 15, 2022, 7:17오전 UTC](https://meta.discourse.org/t/undefined-column-boomarks-post-id-after-update/245365/5 "2022-11-15T07:17:23Z")

</div>

오늘 업데이트를 진행하면서 동일한 문제를 겪었습니다. `post_id` 컬럼을 다시 추가하니 문제가 해결되었습니다.

단계:

1. discourse 컨테이너에 진입합니다.

```plaintext
./launcher enter app

```

1. `psql`을 실행합니다.

```plaintext
sudo -u postgres psql discourse

```

1. `bookmarks` 테이블에 `post_id` 컬럼을 다시 추가합니다.

```plaintext
ALTER TABLE bookmarks ADD COLUMN post_id int;

```

---

_[View the full topic](https://meta.discourse.org/t/undefined-column-boomarks-post-id-after-update/245365)._
