dawarich/app/models/track.rb
2025-01-23 16:03:21 +01:00

7 lines
145 B
Ruby

# frozen_string_literal: true
class Track < ApplicationRecord
belongs_to :user
validates :path, :started_at, :ended_at, presence: true
end