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 : 52.15.61.81
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\Platforms\AbstractPlatform; /** * Table Diff. */ class TableDiff { /** @var string */ public $name; /** @var string|false */ public $newName = false; /** * All added columns * * @var Column[] */ public $addedColumns; /** * All changed columns * * @var ColumnDiff[] */ public $changedColumns = []; /** * All removed columns * * @var Column[] */ public $removedColumns = []; /** * Columns that are only renamed from key to column instance name. * * @var Column[] */ public $renamedColumns = []; /** * All added indexes. * * @var Index[] */ public $addedIndexes = []; /** * All changed indexes. * * @var Index[] */ public $changedIndexes = []; /** * All removed indexes * * @var Index[] */ public $removedIndexes = []; /** * Indexes that are only renamed but are identical otherwise. * * @var Index[] */ public $renamedIndexes = []; /** * All added foreign key definitions * * @var ForeignKeyConstraint[] */ public $addedForeignKeys = []; /** * All changed foreign keys * * @var ForeignKeyConstraint[] */ public $changedForeignKeys = []; /** * All removed foreign keys * * @var ForeignKeyConstraint[]|string[] */ public $removedForeignKeys = []; /** @var Table|null */ public $fromTable; /** * Constructs an TableDiff object. * * @param string $tableName * @param Column[] $addedColumns * @param ColumnDiff[] $changedColumns * @param Column[] $removedColumns * @param Index[] $addedIndexes * @param Index[] $changedIndexes * @param Index[] $removedIndexes */ public function __construct( $tableName, $addedColumns = [], $changedColumns = [], $removedColumns = [], $addedIndexes = [], $changedIndexes = [], $removedIndexes = [], ?Table $fromTable = null ) { $this->name = $tableName; $this->addedColumns = $addedColumns; $this->changedColumns = $changedColumns; $this->removedColumns = $removedColumns; $this->addedIndexes = $addedIndexes; $this->changedIndexes = $changedIndexes; $this->removedIndexes = $removedIndexes; $this->fromTable = $fromTable; } /** * @param AbstractPlatform $platform The platform to use for retrieving this table diff's name. * * @return Identifier */ public function getName(AbstractPlatform $platform) { return new Identifier( $this->fromTable instanceof Table ? $this->fromTable->getQuotedName($platform) : $this->name ); } /** * @return Identifier|false */ public function getNewName() { if ($this->newName === false) { return false; } return new Identifier($this->newName); } }