You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
217 B

  1. class Post < ApplicationRecord
  2. belongs_to :thread, class_name: 'Topic', foreign_key: :thread_id
  3. has_one_attached :image
  4. has_secure_password validations: false
  5. scope :active, -> { where deleted_at: nil }
  6. end