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.219.115.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
migrations /
Delete
Unzip
Name
Size
Permission
Date
Action
.gitignore
0
B
-rw-rw-r--
2022-08-25 15:07
Version20220831121635.php
2.49
KB
-rw-rw-rw-
2022-08-31 12:16
Version20220906143602.php
3.2
KB
-rw-rw-rw-
2022-09-06 14:38
Version20220908125743.php
1.19
KB
-rw-rw-rw-
2022-09-08 13:30
Version20220909103932.php
1.74
KB
-rw-rw-rw-
2022-09-09 10:40
Version20220909105115.php
836
B
-rw-rw-rw-
2022-09-09 10:51
Version20220909111355.php
1003
B
-rw-rw-rw-
2022-09-09 11:14
Version20220909122548.php
1.14
KB
-rw-rw-rw-
2022-09-09 12:26
Version20220913072927.php
1.42
KB
-rw-rw-rw-
2022-09-13 07:31
Version20220916094859.php
2.19
KB
-rw-rw-rw-
2022-09-16 09:49
Save
Rename
<?php declare(strict_types=1); namespace DoctrineMigrations; use Doctrine\DBAL\Schema\Schema; use Doctrine\Migrations\AbstractMigration; /** * Auto-generated Migration: Please modify to your needs! */ final class Version20220909122548 extends AbstractMigration { public function getDescription(): string { return ''; } public function up(Schema $schema): void { // this up() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE support ADD user_id INT DEFAULT NULL, DROP answer'); $this->addSql('ALTER TABLE support ADD CONSTRAINT FK_8004EBA5A76ED395 FOREIGN KEY (user_id) REFERENCES fos_user (id)'); $this->addSql('CREATE INDEX IDX_8004EBA5A76ED395 ON support (user_id)'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('ALTER TABLE support DROP FOREIGN KEY FK_8004EBA5A76ED395'); $this->addSql('DROP INDEX IDX_8004EBA5A76ED395 ON support'); $this->addSql('ALTER TABLE support ADD answer LONGTEXT DEFAULT NULL, DROP user_id'); } }