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.188.161.182
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 /
Platforms /
Delete
Unzip
Name
Size
Permission
Date
Action
Keywords
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
MySQL
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQLServer
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQLite
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
AbstractMySQLPlatform.php
40.58
KB
-rw-rw-r--
2022-08-21 14:21
AbstractPlatform.php
130.37
KB
-rw-rw-r--
2022-08-21 14:21
DB2Platform.php
28.05
KB
-rw-rw-r--
2022-08-21 14:21
DateIntervalUnit.php
470
B
-rw-rw-r--
2022-08-21 14:21
MariaDBPlatform.php
1.62
KB
-rw-rw-r--
2022-08-21 14:21
MariaDb1027Platform.php
433
B
-rw-rw-r--
2022-08-21 14:21
MySQL57Platform.php
2.33
KB
-rw-rw-r--
2022-08-21 14:21
MySQL80Platform.php
768
B
-rw-rw-r--
2022-08-21 14:21
MySQLPlatform.php
230
B
-rw-rw-r--
2022-08-21 14:21
OraclePlatform.php
37.95
KB
-rw-rw-r--
2022-08-21 14:21
PostgreSQL100Platform.php
1017
B
-rw-rw-r--
2022-08-21 14:21
PostgreSQL94Platform.php
259
B
-rw-rw-r--
2022-08-21 14:21
PostgreSQLPlatform.php
39.17
KB
-rw-rw-r--
2022-08-21 14:21
SQLServer2012Platform.php
298
B
-rw-rw-r--
2022-08-21 14:21
SQLServerPlatform.php
56.98
KB
-rw-rw-r--
2022-08-21 14:21
SqlitePlatform.php
40.95
KB
-rw-rw-r--
2022-08-21 14:21
TrimMode.php
310
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL\Platforms; use Doctrine\DBAL\Schema\Index; use Doctrine\DBAL\Schema\TableDiff; use Doctrine\DBAL\SQL\Parser; use Doctrine\DBAL\Types\Types; use Doctrine\Deprecations\Deprecation; /** * Provides the behavior, features and SQL dialect of the MySQL 5.7 (5.7.9 GA) database platform. * * @deprecated This class will be merged with {@see MySQLPlatform} in 4.0 because support for MySQL * releases prior to 5.7 will be dropped. */ class MySQL57Platform extends MySQLPlatform { /** * {@inheritdoc} * * @deprecated */ public function hasNativeJsonType() { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/5509', '%s is deprecated.', __METHOD__ ); return true; } /** * {@inheritdoc} */ public function getJsonTypeDeclarationSQL(array $column) { return 'JSON'; } public function createSQLParser(): Parser { return new Parser(true); } /** * {@inheritdoc} */ protected function getPreAlterTableRenameIndexForeignKeySQL(TableDiff $diff) { return []; } /** * {@inheritdoc} */ protected function getPostAlterTableRenameIndexForeignKeySQL(TableDiff $diff) { return []; } /** * {@inheritdoc} */ protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) { return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)]; } /** * {@inheritdoc} * * @deprecated Implement {@see createReservedKeywordsList()} instead. */ protected function getReservedKeywordsClass() { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/issues/4510', 'MySQL57Platform::getReservedKeywordsClass() is deprecated,' . ' use MySQL57Platform::createReservedKeywordsList() instead.' ); return Keywords\MySQL57Keywords::class; } /** * {@inheritdoc} */ protected function initializeDoctrineTypeMappings() { parent::initializeDoctrineTypeMappings(); $this->doctrineTypeMapping['json'] = Types::JSON; } }