/var/www/vhosts/nabawater/vendor/yiisoft/yii2/db
NameSizeModeActions
conditions/-0755rm
cubrid/-0755rm
mssql/-0755rm
mysql/-0755rm
oci/-0755rm
pgsql/-0755rm
sqlite/-0755rm
ActiveQuery.php315060644editdlrm
ActiveQueryInterface.php45420644editdlrm
ActiveQueryTrait.php63150644editdlrm
ActiveRecord.php297890644editdlrm
ActiveRecordInterface.php212070644editdlrm
ActiveRelationTrait.php232920644editdlrm
AfterSaveEvent.php5530644editdlrm
ArrayExpression.php54000644editdlrm
BaseActiveRecord.php695380644editdlrm
BatchQueryResult.php49050644editdlrm
CheckConstraint.php4580644editdlrm
ColumnSchema.php53560644editdlrm
ColumnSchemaBuilder.php132870644editdlrm
Command.php520260644editdlrm
Connection.php453760644editdlrm
Constraint.php5660644editdlrm
ConstraintFinderInterface.php64540644editdlrm
ConstraintFinderTrait.php112040644editdlrm
DataReader.php85180644editdlrm
DefaultValueConstraint.php4720644editdlrm
Exception.php14570644editdlrm
Expression.php19090644editdlrm
ExpressionBuilder.php7410644editdlrm
ExpressionBuilderInterface.php8600644editdlrm
ExpressionBuilderTrait.php7070644editdlrm
ExpressionInterface.php6150644editdlrm
ForeignKeyConstraint.php9370644editdlrm
IndexConstraint.php5530644editdlrm
IntegrityException.php5460644editdlrm
JsonExpression.php26840644editdlrm
Migration.php269330644editdlrm
MigrationInterface.php12260644editdlrm
PdoValue.php13700644editdlrm
PdoValueBuilder.php6920644editdlrm
Query.php495200644editdlrm
QueryBuilder.php742400644editdlrm
QueryExpressionBuilder.php10440644editdlrm
QueryInterface.php128200644editdlrm
QueryTrait.php151550644editdlrm
Schema.php313770644editdlrm
SchemaBuilderTrait.php114950644editdlrm
SqlToken.php96760644editdlrm
SqlTokenizer.php142080644editdlrm
StaleObjectException.php4470644editdlrm
TableSchema.php31290644editdlrm
Transaction.php93650644editdlrm
ViewFinderTrait.php16140644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/yiisoft/yii2/db/ConstraintFinderInterface.php (6454B)
* @since 2.0.14 */ interface ConstraintFinderInterface { /** * Obtains the primary key for the named table. * @param string $name table name. The table name may contain schema name if any. Do not quote the table name. * @param bool $refresh whether to reload the information even if it is found in the cache. * @return Constraint|null table primary key, `null` if the table has no primary key. */ public function getTablePrimaryKey($name, $refresh = false); /** * Returns primary keys for all tables in the database. * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema name. * @param bool $refresh whether to fetch the latest available table schemas. If this is `false`, * cached data may be returned if available. * @return Constraint[] primary keys for all tables in the database. * Each array element is an instance of [[Constraint]] or its child class. */ public function getSchemaPrimaryKeys($schema = '', $refresh = false); /** * Obtains the foreign keys information for the named table. * @param string $name table name. The table name may contain schema name if any. Do not quote the table name. * @param bool $refresh whether to reload the information even if it is found in the cache. * @return ForeignKeyConstraint[] table foreign keys. */ public function getTableForeignKeys($name, $refresh = false); /** * Returns foreign keys for all tables in the database. * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema name. * @param bool $refresh whether to fetch the latest available table schemas. If this is false, * cached data may be returned if available. * @return ForeignKeyConstraint[][] foreign keys for all tables in the database. * Each array element is an array of [[ForeignKeyConstraint]] or its child classes. */ public function getSchemaForeignKeys($schema = '', $refresh = false); /** * Obtains the indexes information for the named table. * @param string $name table name. The table name may contain schema name if any. Do not quote the table name. * @param bool $refresh whether to reload the information even if it is found in the cache. * @return IndexConstraint[] table indexes. */ public function getTableIndexes($name, $refresh = false); /** * Returns indexes for all tables in the database. * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema name. * @param bool $refresh whether to fetch the latest available table schemas. If this is false, * cached data may be returned if available. * @return IndexConstraint[][] indexes for all tables in the database. * Each array element is an array of [[IndexConstraint]] or its child classes. */ public function getSchemaIndexes($schema = '', $refresh = false); /** * Obtains the unique constraints information for the named table. * @param string $name table name. The table name may contain schema name if any. Do not quote the table name. * @param bool $refresh whether to reload the information even if it is found in the cache. * @return Constraint[] table unique constraints. */ public function getTableUniques($name, $refresh = false); /** * Returns unique constraints for all tables in the database. * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema name. * @param bool $refresh whether to fetch the latest available table schemas. If this is false, * cached data may be returned if available. * @return Constraint[][] unique constraints for all tables in the database. * Each array element is an array of [[Constraint]] or its child classes. */ public function getSchemaUniques($schema = '', $refresh = false); /** * Obtains the check constraints information for the named table. * @param string $name table name. The table name may contain schema name if any. Do not quote the table name. * @param bool $refresh whether to reload the information even if it is found in the cache. * @return CheckConstraint[] table check constraints. */ public function getTableChecks($name, $refresh = false); /** * Returns check constraints for all tables in the database. * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema name. * @param bool $refresh whether to fetch the latest available table schemas. If this is false, * cached data may be returned if available. * @return CheckConstraint[][] check constraints for all tables in the database. * Each array element is an array of [[CheckConstraint]] or its child classes. */ public function getSchemaChecks($schema = '', $refresh = false); /** * Obtains the default value constraints information for the named table. * @param string $name table name. The table name may contain schema name if any. Do not quote the table name. * @param bool $refresh whether to reload the information even if it is found in the cache. * @return DefaultValueConstraint[] table default value constraints. */ public function getTableDefaultValues($name, $refresh = false); /** * Returns default value constraints for all tables in the database. * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema name. * @param bool $refresh whether to fetch the latest available table schemas. If this is false, * cached data may be returned if available. * @return DefaultValueConstraint[] default value constraints for all tables in the database. * Each array element is an array of [[DefaultValueConstraint]] or its child classes. */ public function getSchemaDefaultValues($schema = '', $refresh = false); }