diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-21 23:31:36 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 23:31:36 -0500 |
commit | 2bdfbfe32c66c672f3e7b29248c7b6199567a9e5 (patch) | |
tree | c4faa52bb3dfc3f36417e31f696291966755c2f7 /app/models | |
parent | ec288a11a0c139e7c3cbd41ca9b4d6699c1d0f55 (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.rb | 2 |
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 |