unique filenames per album
parent
77977e6685
commit
ae18d70f66
|
@ -2,6 +2,7 @@ class Photo < ActiveRecord::Base
|
||||||
attr_accessor :file
|
attr_accessor :file
|
||||||
|
|
||||||
validates_presence_of :author_id, :album_id
|
validates_presence_of :author_id, :album_id
|
||||||
|
validates_uniqueness_of :filename, :scope => :album_id
|
||||||
|
|
||||||
belongs_to :album
|
belongs_to :album
|
||||||
belongs_to :author
|
belongs_to :author
|
||||||
|
@ -108,4 +109,4 @@ class Photo < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
Dir.delete(base_directory)
|
Dir.delete(base_directory)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in New Issue