X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/64816e50b57ced52f5fb0082f97b2844e002cf11..c2f23fea6a7821a4ad4c97fd65744b138ec86267:/app/models/diary_entry.rb diff --git a/app/models/diary_entry.rb b/app/models/diary_entry.rb index 2a24d8002..d4139f652 100644 --- a/app/models/diary_entry.rb +++ b/app/models/diary_entry.rb @@ -2,8 +2,8 @@ # # Table name: diary_entries # -# id :integer not null, primary key -# user_id :integer not null +# id :bigint(8) not null, primary key +# user_id :bigint(8) not null # title :string not null # body :text not null # created_at :datetime not null @@ -37,7 +37,7 @@ class DiaryEntry < ActiveRecord::Base scope :visible, -> { where(:visible => true) } - validates :title, :body, :presence => true + validates :title, :body, :presence => true, :invalid_chars => true validates :title, :length => 1..255 validates :latitude, :allow_nil => true, :numericality => { :greater_than_or_equal_to => -90,