Merge pull request #1242 from nileshtrivedi/increase_length_for_why_join_field
Fix #1236 Increase max length of UserInviteRequest.text from 420 to 5000
This commit is contained in:
commit
ab37360d35
|
@ -13,5 +13,5 @@
|
|||
|
||||
class UserInviteRequest < ApplicationRecord
|
||||
belongs_to :user, inverse_of: :invite_request
|
||||
validates :text, presence: true, length: { maximum: 420 }
|
||||
validates :text, presence: true, length: { maximum: 5000 }
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue