dawarich/app/models/area.rb
2024-07-21 20:32:29 +02:00

8 lines
192 B
Ruby

# frozen_string_literal: true
class Area < ApplicationRecord
belongs_to :user
has_many :visits, dependent: :destroy
validates :name, :latitude, :longitude, :radius, presence: true
end