FIX: Ignore removed delete_when_reminder_sent bookmarks column

This commit is contained in:
Martin Brennan 2020-07-22 10:17:21 +10:00
parent 62f2e1f971
commit 8dc3543134
No known key found for this signature in database
GPG Key ID: A08063EEF3EA26A4
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,10 @@
# frozen_string_literal: true # frozen_string_literal: true
class Bookmark < ActiveRecord::Base class Bookmark < ActiveRecord::Base
self.ignored_columns = [
"delete_when_reminder_sent" # TODO(2021-07-22): remove
]
belongs_to :user belongs_to :user
belongs_to :post belongs_to :post
belongs_to :topic belongs_to :topic