about summary refs log tree commit diff
path: root/app/models/mention.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/mention.rb')
-rw-r--r--app/models/mention.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/models/mention.rb b/app/models/mention.rb
index 03e76fcc4..a8d243259 100644
--- a/app/models/mention.rb
+++ b/app/models/mention.rb
@@ -1,4 +1,14 @@
 # frozen_string_literal: true
+# == Schema Information
+#
+# Table name: mentions
+#
+#  id         :integer          not null, primary key
+#  account_id :integer
+#  status_id  :integer
+#  created_at :datetime         not null
+#  updated_at :datetime         not null
+#
 
 class Mention < ApplicationRecord
   belongs_to :account, inverse_of: :mentions, required: true