6 lines
82 B
Ruby
6 lines
82 B
Ruby
|
|
class Status < ApplicationRecord
|
||
|
|
belongs_to :user
|
||
|
|
has_one_attached :icon
|
||
|
|
end
|
||
|
|
|