From 2bdfbfe32c66c672f3e7b29248c7b6199567a9e5 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Tue, 21 May 2019 23:31:36 -0500 Subject: ignore the `tsv` column on the statuses table - our code will never touch this --- app/models/status.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/models') 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 -- cgit