ballalama3_app/app/models/realisation.rb
Nicolas Bally bc774b8159 initial
2016-12-01 10:54:16 +01:00

13 lines
231 B
Ruby

class Realisation < ActiveRecord::Base
has_many :realisation_images, :dependent => :destroy
belongs_to :default_image, :class_name => "RealisationImage"
before_validation do
self.slug = self.title.to_slug
end
end