5 lines
82 B
Ruby
5 lines
82 B
Ruby
|
|
class Store < ApplicationRecord
|
||
|
|
has_one_attached :image
|
||
|
|
belongs_to :chain
|
||
|
|
end
|