openstreetmap-website/app/models/application_record.rb
Andy Allan a41d500b9f Create an ApplicationRecord for models to inherit from
This is the default for Rails 5+, and also paves the way for
multiple database support.
2019-11-27 11:50:48 +01:00

3 lines
78 B
Ruby

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