mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
5 lines
162 B
Ruby
5 lines
162 B
Ruby
|
class Organization < ActiveRecord::Base
|
||
|
has_one :address, as: :placeable, dependent: :destroy
|
||
|
accepts_nested_attributes_for :address, allow_destroy: true
|
||
|
end
|