@mmd-osm commented on this pull request.
> +# Table name: note_tags
+#
+# note_id :bigint(8) not null, primary key
+# k :string default(""), not null, primary key
+# v :string default(""), not null
+#
+# Foreign Keys
+#
+# note_tags_id_fkey (note_id => notes.id)
+#
+
+class NoteTag < ApplicationRecord
+ belongs_to :note
+
+ validates :note, :associated => true
+ validates :k, :v, :allow_blank => true, :length => { :maximum => 255 },
:characters => true
I’m rejecting empty keys in cgimap since many years now. I guess they originate
from single object rails code.
--
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/pull/5344#discussion_r1958778994
You are receiving this because you are subscribed to this thread.
Message ID:
<openstreetmap/openstreetmap-website/pull/5344/review/2621964...@github.com>
_______________________________________________
rails-dev mailing list
rails-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/rails-dev