Remove ignored Buffer columns (#13139)

This commit is contained in:
Michael Kohl 2021-03-26 23:37:29 +07:00 committed by GitHub
parent 49c20a0c72
commit 1732396abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 5 deletions

View file

@ -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

View file

@ -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

View file

@ -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