gimmyxd/mentors4me-api

View on GitHub
app/models/organization.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Organization < ApplicationRecord
  belongs_to :user
  validates :name, :asignee, :phone_number, :city, presence: true, length: { maximum: 50 }
  validates :facebook, length: { maximum: 100 }
  validates :description, presence: true, length: { maximum: 500 }
end