about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-05-21 23:31:36 -0500
committermultiple creatures <dev@multiple-creature.party>2019-05-21 23:31:36 -0500
commit2bdfbfe32c66c672f3e7b29248c7b6199567a9e5 (patch)
treec4faa52bb3dfc3f36417e31f696291966755c2f7 /app/models
parentec288a11a0c139e7c3cbd41ca9b4d6699c1d0f55 (diff)
ignore the `tsv` column on the statuses table - our code will never touch this
Diffstat (limited to 'app/models')
-rw-r--r--app/models/status.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 9095c3688..30af341cc 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -35,6 +35,8 @@
 #
 
 class Status < ApplicationRecord
+  self.ignored_columns = %w(tsv)
+
   before_destroy :unlink_from_conversations
 
   include Paginable