gitlab-org--gitlab-foss/app/models/snippet_statistics.rb

8 lines
139 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SnippetStatistics < ApplicationRecord
belongs_to :snippet
validates :snippet, presence: true
end