Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.218.99.99
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
dbal /
src /
Schema /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Visitor
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
AbstractAsset.php
6
KB
-rw-rw-r--
2022-08-21 14:21
AbstractSchemaManager.php
47.55
KB
-rw-rw-r--
2022-08-21 14:21
Column.php
9.54
KB
-rw-rw-r--
2022-08-21 14:21
ColumnDiff.php
1.55
KB
-rw-rw-r--
2022-08-21 14:21
Comparator.php
21.4
KB
-rw-rw-r--
2022-08-21 14:21
Constraint.php
1.07
KB
-rw-rw-r--
2022-08-21 14:21
DB2SchemaManager.php
12.35
KB
-rw-rw-r--
2022-08-21 14:21
ForeignKeyConstraint.php
11.03
KB
-rw-rw-r--
2022-08-21 14:21
Identifier.php
666
B
-rw-rw-r--
2022-08-21 14:21
Index.php
8.53
KB
-rw-rw-r--
2022-08-21 14:21
MySQLSchemaManager.php
16.77
KB
-rw-rw-r--
2022-08-21 14:21
OracleSchemaManager.php
15.71
KB
-rw-rw-r--
2022-08-21 14:21
PostgreSQLSchemaManager.php
22.49
KB
-rw-rw-r--
2022-08-21 14:21
SQLServerSchemaManager.php
18.22
KB
-rw-rw-r--
2022-08-21 14:21
Schema.php
12.68
KB
-rw-rw-r--
2022-08-21 14:21
SchemaConfig.php
2.41
KB
-rw-rw-r--
2022-08-21 14:21
SchemaDiff.php
3.82
KB
-rw-rw-r--
2022-08-21 14:21
SchemaException.php
5.45
KB
-rw-rw-r--
2022-08-21 14:21
Sequence.php
3.32
KB
-rw-rw-r--
2022-08-21 14:21
SqliteSchemaManager.php
22.31
KB
-rw-rw-r--
2022-08-21 14:21
Table.php
26.31
KB
-rw-rw-r--
2022-08-21 14:21
TableDiff.php
3.11
KB
-rw-rw-r--
2022-08-21 14:21
UniqueConstraint.php
3.23
KB
-rw-rw-r--
2022-08-21 14:21
View.php
457
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL\Schema; use Doctrine\DBAL\Exception; use function implode; use function sprintf; /** * @psalm-immutable */ class SchemaException extends Exception { public const TABLE_DOESNT_EXIST = 10; public const TABLE_ALREADY_EXISTS = 20; public const COLUMN_DOESNT_EXIST = 30; public const COLUMN_ALREADY_EXISTS = 40; public const INDEX_DOESNT_EXIST = 50; public const INDEX_ALREADY_EXISTS = 60; public const SEQUENCE_DOENST_EXIST = 70; public const SEQUENCE_ALREADY_EXISTS = 80; public const INDEX_INVALID_NAME = 90; public const FOREIGNKEY_DOESNT_EXIST = 100; public const CONSTRAINT_DOESNT_EXIST = 110; public const NAMESPACE_ALREADY_EXISTS = 120; /** * @param string $tableName * * @return SchemaException */ public static function tableDoesNotExist($tableName) { return new self("There is no table with name '" . $tableName . "' in the schema.", self::TABLE_DOESNT_EXIST); } /** * @param string $indexName * * @return SchemaException */ public static function indexNameInvalid($indexName) { return new self( sprintf('Invalid index-name %s given, has to be [a-zA-Z0-9_]', $indexName), self::INDEX_INVALID_NAME ); } /** * @param string $indexName * @param string $table * * @return SchemaException */ public static function indexDoesNotExist($indexName, $table) { return new self( sprintf("Index '%s' does not exist on table '%s'.", $indexName, $table), self::INDEX_DOESNT_EXIST ); } /** * @param string $indexName * @param string $table * * @return SchemaException */ public static function indexAlreadyExists($indexName, $table) { return new self( sprintf("An index with name '%s' was already defined on table '%s'.", $indexName, $table), self::INDEX_ALREADY_EXISTS ); } /** * @param string $columnName * @param string $table * * @return SchemaException */ public static function columnDoesNotExist($columnName, $table) { return new self( sprintf("There is no column with name '%s' on table '%s'.", $columnName, $table), self::COLUMN_DOESNT_EXIST ); } /** * @param string $namespaceName * * @return SchemaException */ public static function namespaceAlreadyExists($namespaceName) { return new self( sprintf("The namespace with name '%s' already exists.", $namespaceName), self::NAMESPACE_ALREADY_EXISTS ); } /** * @param string $tableName * * @return SchemaException */ public static function tableAlreadyExists($tableName) { return new self("The table with name '" . $tableName . "' already exists.", self::TABLE_ALREADY_EXISTS); } /** * @param string $tableName * @param string $columnName * * @return SchemaException */ public static function columnAlreadyExists($tableName, $columnName) { return new self( "The column '" . $columnName . "' on table '" . $tableName . "' already exists.", self::COLUMN_ALREADY_EXISTS ); } /** * @param string $name * * @return SchemaException */ public static function sequenceAlreadyExists($name) { return new self("The sequence '" . $name . "' already exists.", self::SEQUENCE_ALREADY_EXISTS); } /** * @param string $name * * @return SchemaException */ public static function sequenceDoesNotExist($name) { return new self("There exists no sequence with the name '" . $name . "'.", self::SEQUENCE_DOENST_EXIST); } /** * @param string $constraintName * @param string $table * * @return SchemaException */ public static function uniqueConstraintDoesNotExist($constraintName, $table) { return new self( sprintf('There exists no unique constraint with the name "%s" on table "%s".', $constraintName, $table), self::CONSTRAINT_DOESNT_EXIST ); } /** * @param string $fkName * @param string $table * * @return SchemaException */ public static function foreignKeyDoesNotExist($fkName, $table) { return new self( sprintf("There exists no foreign key with the name '%s' on table '%s'.", $fkName, $table), self::FOREIGNKEY_DOESNT_EXIST ); } /** * @return SchemaException */ public static function namedForeignKeyRequired(Table $localTable, ForeignKeyConstraint $foreignKey) { return new self( 'The performed schema operation on ' . $localTable->getName() . ' requires a named foreign key, ' . 'but the given foreign key from (' . implode(', ', $foreignKey->getColumns()) . ') onto foreign table ' . "'" . $foreignKey->getForeignTableName() . "' (" . implode(', ', $foreignKey->getForeignColumns()) . ')' . ' is currently unnamed.' ); } /** * @param string $changeName * * @return SchemaException */ public static function alterTableChangeNotSupported($changeName) { return new self( sprintf("Alter table change not supported, given '%s'", $changeName) ); } }