unique filenames per album

This commit is contained in:
Andrew Coleman 2009-03-21 21:00:41 -05:00
commit ae18d70f66

View file

@ -2,6 +2,7 @@ class Photo < ActiveRecord::Base
attr_accessor :file
validates_presence_of :author_id, :album_id
validates_uniqueness_of :filename, :scope => :album_id
belongs_to :album
belongs_to :author
@ -108,4 +109,4 @@ class Photo < ActiveRecord::Base
end
Dir.delete(base_directory)
end
end
end