dawarich/app/models/area.rb

8 lines
152 B
Ruby
Raw Normal View History

2024-07-21 14:09:42 -04:00
# frozen_string_literal: true
class Area < ApplicationRecord
belongs_to :user
validates :name, :latitude, :longitude, :radius, presence: true
end