diff options
Diffstat (limited to 'app/models/mute.rb')
-rw-r--r-- | app/models/mute.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/mute.rb b/app/models/mute.rb index d0de62ed5..00e5661a7 100644 --- a/app/models/mute.rb +++ b/app/models/mute.rb @@ -1,4 +1,14 @@ # frozen_string_literal: true +# == Schema Information +# +# Table name: mutes +# +# id :integer not null, primary key +# account_id :integer not null +# target_account_id :integer not null +# created_at :datetime not null +# updated_at :datetime not null +# class Mute < ApplicationRecord include Paginable |