5 lines
128 B
Ruby
5 lines
128 B
Ruby
# Gives the possibility to organise organisations! :)
|
|
class Kind < ApplicationRecord
|
|
has_many :orgas, dependent: :destroy
|
|
end
|