]>
cat aescling's git repositories - mastodon.git/blob - app/models/user_invite_request.rb
1 # frozen_string_literal: true
3 # == Schema Information
5 # Table name: user_invite_requests
7 # id :bigint(8) not null, primary key
10 # created_at :datetime not null
11 # updated_at :datetime not null
14 class UserInviteRequest
< ApplicationRecord
15 belongs_to
:user, inverse_of
: :invite_request
16 validates
:text, presence
: true, length
: { maximum
: 420 }
This page took 0.081996 seconds and 5 git commands to generate.