Skip to content

Commit a0f1da9

Browse files
authoredMar 3, 2025
Merge pull request opf#18075 from opf/code-maintenance/61776-active_record_doctor-detect-fk-association-dependent-mismatches
[#61776] Configure `active_record_doctor` to detect mismatched fk constraints and association `dependent` option
2 parents 1f7daa1 + 08b7702 commit a0f1da9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed
 

‎Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@ group :development, :test do
363363

364364
# i18n-tasks helps find and manage missing and unused translations.
365365
gem "i18n-tasks", "~> 1.0.13", require: false
366+
367+
# Active Record Doctor helps to keep the database in good shape.
368+
gem "active_record_doctor", "~> 1.15.0"
366369
end
367370

368371
gem "bootsnap", "~> 1.18.0", require: false

‎Gemfile.lock

+4
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,8 @@ GEM
291291
erubi (~> 1.11)
292292
rails-dom-testing (~> 2.2)
293293
rails-html-sanitizer (~> 1.6)
294+
active_record_doctor (1.15.0)
295+
activerecord (>= 4.2.0)
294296
activejob (7.1.5.1)
295297
activesupport (= 7.1.5.1)
296298
globalid (>= 0.3.6)
@@ -1267,6 +1269,7 @@ PLATFORMS
12671269

12681270
DEPENDENCIES
12691271
actionpack-xml_parser (~> 2.0.0)
1272+
active_record_doctor (~> 1.15.0)
12701273
activemodel-serializers-xml (~> 1.0.1)
12711274
activerecord-import (~> 2.1.0)
12721275
activerecord-nulldb-adapter (~> 1.1.0)
@@ -1486,6 +1489,7 @@ CHECKSUMS
14861489
actionpack-xml_parser (2.0.1) sha256=40cb461ee99445314ab580a783fb7413580deb8b28113c9e70ecd7c1b334d5e6
14871490
actiontext (7.1.5.1) sha256=b8e261cfad5bc6a78b3f15be5e7c7f32190041b3dc6f027a3a353b4392d2f7ec
14881491
actionview (7.1.5.1) sha256=8c559a213501798e29b50b5341a643a70bbf6fa0aa2abaf571d0efc59dc4f6aa
1492+
active_record_doctor (1.15.0) sha256=614a49e259a679d17cbc62dead9217acaf7191a371115606132473123b426b13
14891493
activejob (7.1.5.1) sha256=7633376c857f4c491d06b5a7f5d86d9f07afc595398354a3f1abe80eb7e35767
14901494
activemodel (7.1.5.1) sha256=74727466854a7fbdfe8f2702ca3112b23877500d4926bf7e02e921ad542191f1
14911495
activemodel-serializers-xml (1.0.3) sha256=fa1b16305e7254cc58a59c68833e3c0a593a59c8ab95d3be5aaea7cd9416c397

‎app/models/user.rb

+5-3
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,16 @@ class User < Principal
6868
belongs_to :ldap_auth_source, optional: true
6969

7070
# Authorized OAuth grants
71-
has_many :oauth_grants,
71+
has_many :oauth_grants, # rubocop:disable Rails/InverseOf
7272
class_name: "Doorkeeper::AccessGrant",
73-
foreign_key: "resource_owner_id"
73+
foreign_key: "resource_owner_id",
74+
dependent: :delete_all
7475

7576
# User-defined oauth applications
7677
has_many :oauth_applications,
7778
class_name: "Doorkeeper::Application",
78-
as: :owner
79+
as: :owner,
80+
dependent: :destroy
7981

8082
# Meeting memberships
8183
has_many :meeting_participants,

‎spec/models/user_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
describe "Associations" do
5151
it { is_expected.to have_many(:emoji_reactions).dependent(:destroy) }
5252
it { is_expected.to have_many(:reminders).with_foreign_key(:creator_id).dependent(:destroy).inverse_of(:creator) }
53+
it { is_expected.to have_many(:oauth_grants).with_foreign_key(:resource_owner_id).dependent(:delete_all) }
54+
it { is_expected.to have_many(:oauth_applications).dependent(:destroy) }
5355
end
5456

5557
describe "with long but allowed attributes" do

0 commit comments

Comments
 (0)
Failed to load comments.