fga-gpp-mds/Falko-2017.2-BackEnd

View on GitHub
app/models/revision.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Revision < ApplicationRecord
  belongs_to :sprint

  validates :done_report, presence: true, length: { maximum: 500 }
  validates :undone_report, presence: true, length: { maximum: 500 }
end