Files
fizzy/app/models/application_record.rb
T
Donal McBreen 13db384648 Auto default for UUID primary keys
Patch load_schmema! to set the default value for UUID primary keys. This
removes the need to patch ApplicationRecord + Rails models individually.

It also means we no longer need to patch the default in for the integer
primary key in Search::Record::SQLite.
2025-12-03 14:27:52 +00:00

6 lines
107 B
Ruby

class ApplicationRecord < ActiveRecord::Base
primary_abstract_class
configure_replica_connections
end