mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
8 lines
154 B
Ruby
8 lines
154 B
Ruby
class PostStatusChange < ApplicationRecord
|
|
include TenantOwnable
|
|
|
|
belongs_to :user
|
|
belongs_to :post
|
|
belongs_to :post_status, optional: true
|
|
end
|