Class: DatabaseConsistency::Writers::Autofix::MissingForeignKey

Inherits:
MigrationBase show all
Defined in:
lib/database_consistency/writers/autofix/missing_foreign_key.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from Base

#report

Instance Method Summary collapse

Methods inherited from MigrationBase

#fix!

Methods included from Helpers::Migration

#migration_configuration, #migration_path, #migration_path_pattern

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from DatabaseConsistency::Writers::Autofix::Base

Instance Method Details

#attributesObject



7
8
9
10
11
12
13
14
# File 'lib/database_consistency/writers/autofix/missing_foreign_key.rb', line 7

def attributes
  {
    foreign_table: report.foreign_table,
    foreign_key: report.foreign_key,
    primary_table: report.primary_table,
    primary_key: report.primary_key
  }
end