X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5b33f3f8e31c62bc3e5db1d5b120533c3afdde68..1e57189366c0e4a49cb29658e9bf5985996709a2:/app/models/redaction.rb?ds=sidebyside diff --git a/app/models/redaction.rb b/app/models/redaction.rb index 04f002e36..812224d36 100644 --- a/app/models/redaction.rb +++ b/app/models/redaction.rb @@ -1,3 +1,20 @@ +# == Schema Information +# +# Table name: redactions +# +# id :integer not null, primary key +# title :string +# description :text +# created_at :datetime +# updated_at :datetime +# user_id :integer not null +# description_format :enum default("markdown"), not null +# +# Foreign Keys +# +# redactions_user_id_fkey (user_id => users.id) +# + ## # Redaction represents a record associated with a particular # action on the database to hide revisions from the history @@ -14,6 +31,7 @@ class Redaction < ActiveRecord::Base has_many :old_ways has_many :old_relations + validates :title, :description, :invalid_chars => true validates :description, :presence => true validates :description_format, :inclusion => { :in => %w[text html markdown] }