@@ 587-606 (lines=20) @@ | ||
584 | /** |
|
585 | * {@inheritdoc} |
|
586 | */ |
|
587 | public function hasForeignKey($tableName, $columns, $constraint = null) |
|
588 | { |
|
589 | if (is_string($columns)) { |
|
590 | $columns = [$columns]; // str to array |
|
591 | } |
|
592 | $foreignKeys = $this->getForeignKeys($tableName); |
|
593 | if ($constraint) { |
|
594 | if (isset($foreignKeys[$constraint])) { |
|
595 | return !empty($foreignKeys[$constraint]); |
|
596 | } |
|
597 | ||
598 | return false; |
|
599 | } else { |
|
600 | foreach ($foreignKeys as $key) { |
|
601 | if ($columns == $key['columns']) { |
|
602 | return true; |
|
603 | } |
|
604 | } |
|
605 | ||
606 | return false; |
|
607 | } |
|
608 | } |
|
609 |
@@ 733-753 (lines=21) @@ | ||
730 | /** |
|
731 | * {@inheritdoc} |
|
732 | */ |
|
733 | public function hasForeignKey($tableName, $columns, $constraint = null) |
|
734 | { |
|
735 | if (is_string($columns)) { |
|
736 | $columns = [$columns]; // str to array |
|
737 | } |
|
738 | $foreignKeys = $this->getForeignKeys($tableName); |
|
739 | if ($constraint) { |
|
740 | if (isset($foreignKeys[$constraint])) { |
|
741 | return !empty($foreignKeys[$constraint]); |
|
742 | } |
|
743 | ||
744 | return false; |
|
745 | } else { |
|
746 | foreach ($foreignKeys as $key) { |
|
747 | $a = array_diff($columns, $key['columns']); |
|
748 | if (empty($a)) { |
|
749 | return true; |
|
750 | } |
|
751 | } |
|
752 | ||
753 | return false; |
|
754 | } |
|
755 | } |
|
756 |
@@ 639-659 (lines=21) @@ | ||
636 | /** |
|
637 | * {@inheritdoc} |
|
638 | */ |
|
639 | public function hasForeignKey($tableName, $columns, $constraint = null) |
|
640 | { |
|
641 | if (is_string($columns)) { |
|
642 | $columns = [$columns]; // str to array |
|
643 | } |
|
644 | $foreignKeys = $this->getForeignKeys($tableName); |
|
645 | if ($constraint) { |
|
646 | if (isset($foreignKeys[$constraint])) { |
|
647 | return !empty($foreignKeys[$constraint]); |
|
648 | } |
|
649 | ||
650 | return false; |
|
651 | } else { |
|
652 | foreach ($foreignKeys as $key) { |
|
653 | $a = array_diff($columns, $key['columns']); |
|
654 | if (empty($a)) { |
|
655 | return true; |
|
656 | } |
|
657 | } |
|
658 | ||
659 | return false; |
|
660 | } |
|
661 | } |
|
662 |