Remove ignored Buffer columns (#13139)
This commit is contained in:
parent
49c20a0c72
commit
1732396abc
3 changed files with 0 additions and 5 deletions
|
|
@ -1,6 +1,4 @@
|
|||
class Article < ApplicationRecord
|
||||
self.ignored_columns = %w[facebook_last_buffered last_buffered].freeze
|
||||
|
||||
include CloudinaryHelper
|
||||
include ActionView::Helpers
|
||||
include Storext.model
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ class Listing < ApplicationRecord
|
|||
# We used to use both "classified listing" and "listing" throughout the app.
|
||||
# We standardized on the latter, but keeping the table name was easier.
|
||||
self.table_name = "classified_listings"
|
||||
self.ignored_columns = ["last_buffered"].freeze
|
||||
|
||||
include Searchable
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
require_relative "../lib/acts_as_taggable_on/tag"
|
||||
|
||||
class Tag < ActsAsTaggableOn::Tag
|
||||
self.ignored_columns = ["buffer_profile_id_code"].freeze
|
||||
|
||||
attr_accessor :points, :tag_moderator_id, :remove_moderator_id
|
||||
|
||||
acts_as_followable
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue