Class: DatabaseConsistency::Checkers::ForeignKeyChecker

Inherits:
AssociationChecker show all
Defined in:
lib/database_consistency/checkers/association_checkers/foreign_key_checker.rb

Overview

This class checks if non polymorphic belongs_to association has foreign key constraint

Constant Summary collapse

Report =
ReportBuilder.define(
  DatabaseConsistency::Report,
  :primary_table,
  :primary_key,
  :foreign_table,
  :foreign_key
)

Instance Attribute Summary

Attributes inherited from AssociationChecker

#association, #model

Method Summary

Methods inherited from AssociationChecker

#column_or_attribute_name, #initialize, #table_or_model_name

Methods inherited from BaseChecker

checker_name, enabled?, #enabled?, #report, #report_if_enabled?

Constructor Details

This class inherits a constructor from DatabaseConsistency::Checkers::AssociationChecker