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

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

class Issues::CsvImport < ApplicationRecord
  self.table_name = 'csv_issue_imports'

  belongs_to :project, optional: false
  belongs_to :user, optional: false
end