Welcome to mirror list, hosted at ThFree Co, Russian Federation.

import_failure.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 998572853d366a3c93fc855e8f1bf1ca1c3115b7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class ImportFailure < ApplicationRecord
  belongs_to :project

  validates :project, presence: true
end