API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity.rb 153B

123456
  1. class Activity < ApplicationRecord
  2. belongs_to :author, class_name: "User"
  3. validates :name, presence: true
  4. validates :author, presence: true
  5. end