API de comptabilité horaire.
Ви не можете вибрати більше 25 тем
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678 |
- class Task < ApplicationRecord
- validates :name, presence: true
- validates :user, presence: true
-
- belongs_to :activity
- belongs_to :user
- has_many :records
- end
|