gitlab-org--gitlab-foss/app/models/application_record.rb
Jan Provaznik 648f05622d Add ApplicationRecord model class
In Rails 5 all models by default inherit from ApplicationRecord.
2018-11-14 12:41:16 +01:00

5 lines
109 B
Ruby

# frozen_string_literal: true
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
end