summaryrefslogtreecommitdiff
path: root/app/models/checkpoint.rb
blob: 9cdb7743a88fcfd71e4956e21bd3c235a97300f3 (plain)
1
2
3
4
5
6
7
8
class Checkpoint < ApplicationRecord
  enum kind: {comment: 0, checkin: 1, checkout: 2}

  belongs_to :run
  belongs_to :user

  has_one_attached :save_file
end