13 lines
231 B
Ruby
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
|