Home
last modified time | relevance | path

Searched refs:hasForeignKey (Results 1 – 21 of 21) sorted by relevance

/dports/www/elgg/elgg-3.3.23/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/
H A DAdapterWrapper.php415 public function hasForeignKey($tableName, $columns, $constraint = null) function in Phinx\\Db\\Adapter\\AdapterWrapper
417 return $this->getAdapter()->hasForeignKey($tableName, $columns, $constraint);
H A DTablePrefixAdapter.php303 public function hasForeignKey($tableName, $columns, $constraint = null) function in Phinx\\Db\\Adapter\\TablePrefixAdapter
307 return parent::hasForeignKey($adapterTableName, $columns, $constraint);
H A DAdapterInterface.php431 public function hasForeignKey($tableName, $columns, $constraint = null); function
H A DSqlServerAdapter.php877 public function hasForeignKey($tableName, $columns, $constraint = null) function in Phinx\\Db\\Adapter\\SqlServerAdapter
H A DMysqlAdapter.php717 public function hasForeignKey($tableName, $columns, $constraint = null) function in Phinx\\Db\\Adapter\\MysqlAdapter
H A DPostgresAdapter.php794 public function hasForeignKey($tableName, $columns, $constraint = null) function in Phinx\\Db\\Adapter\\PostgresAdapter
H A DSQLiteAdapter.php1083 public function hasForeignKey($tableName, $columns, $constraint = null) function in Phinx\\Db\\Adapter\\SQLiteAdapter
/dports/databases/pear-DoctrineDBAL/DoctrineDBAL-2.3.4/Doctrine/DBAL/Schema/
H A DTable.php473 public function hasForeignKey($constraintName) function in Doctrine\\DBAL\\Schema\\Table
486 if(!$this->hasForeignKey($constraintName)) {
496 if(!$this->hasForeignKey($constraintName)) {
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php573 public function hasForeignKey($constraintName) function in Doctrine\\DBAL\\Schema\\Table
592 if (!$this->hasForeignKey($constraintName)) {
611 if (!$this->hasForeignKey($constraintName)) {
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php593 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
612 if (! $this->hasForeignKey($name)) {
631 if (! $this->hasForeignKey($name)) {
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php573 public function hasForeignKey($constraintName) function in Doctrine\\DBAL\\Schema\\Table
592 if (!$this->hasForeignKey($constraintName)) {
611 if (!$this->hasForeignKey($constraintName)) {
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php545 public function hasForeignKey($constraintName) function in Doctrine\\DBAL\\Schema\\Table
564 if (! $this->hasForeignKey($constraintName)) {
583 if (! $this->hasForeignKey($constraintName)) {
/dports/www/elgg/elgg-3.3.23/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php587 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
606 if (! $this->hasForeignKey($name)) {
625 if (! $this->hasForeignKey($name)) {
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php593 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
612 if (! $this->hasForeignKey($name)) {
631 if (! $this->hasForeignKey($name)) {
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php542 public function hasForeignKey($constraintName) function in Doctrine\\DBAL\\Schema\\Table
561 if (! $this->hasForeignKey($constraintName)) {
580 if (! $this->hasForeignKey($constraintName)) {
/dports/www/typo3-10/typo3_src-10.4.25/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php587 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
606 if (! $this->hasForeignKey($name)) {
625 if (! $this->hasForeignKey($name)) {
/dports/www/typo3-11/typo3_src-11.5.7/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php593 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
612 if (! $this->hasForeignKey($name)) {
631 if (! $this->hasForeignKey($name)) {
/dports/www/owncloud/owncloud/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php593 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
612 if (! $this->hasForeignKey($name)) {
631 if (! $this->hasForeignKey($name)) {
/dports/www/elgg/elgg-3.3.23/vendor/robmorgan/phinx/src/Phinx/Db/
H A DTable.php527 public function hasForeignKey($columns, $constraint = null) function in Phinx\\Db\\Table
529 return $this->getAdapter()->hasForeignKey($this->getName(), $columns, $constraint);
/dports/www/nextcloud/nextcloud/3rdparty/doctrine/dbal/src/Schema/
H A DTable.php607 public function hasForeignKey($name) function in Doctrine\\DBAL\\Schema\\Table
627 if (! $this->hasForeignKey($name)) {
647 if (! $this->hasForeignKey($name)) {
/dports/www/nextcloud/nextcloud/lib/private/DB/
H A DMigrationService.php606 …if ((!$sourceTable instanceof Table || !$sourceTable->hasForeignKey($thing->getName())) && \strlen…