idn_app/app/models/realisation.rb
Nicolas Bally b5690bc6f2 initial
2016-07-25 15:55:11 +02: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