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 : 3.138.151.175
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 Version20220916094859 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('CREATE TABLE ticket (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, sort INT DEFAULT NULL, email VARCHAR(255) DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, status INT DEFAULT NULL, type INT DEFAULT NULL, question LONGTEXT DEFAULT NULL, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, INDEX IDX_97A0ADA3A76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); $this->addSql('ALTER TABLE ticket ADD CONSTRAINT FK_97A0ADA3A76ED395 FOREIGN KEY (user_id) REFERENCES fos_user (id)'); $this->addSql('ALTER TABLE support DROP FOREIGN KEY FK_8004EBA5A76ED395'); $this->addSql('DROP TABLE support'); $this->addSql('ALTER TABLE faq ADD type INT DEFAULT NULL'); } public function down(Schema $schema): void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('CREATE TABLE support (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, sort INT DEFAULT NULL, email VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, question LONGTEXT CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, INDEX IDX_8004EBA5A76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' '); $this->addSql('ALTER TABLE support ADD CONSTRAINT FK_8004EBA5A76ED395 FOREIGN KEY (user_id) REFERENCES fos_user (id)'); $this->addSql('ALTER TABLE ticket DROP FOREIGN KEY FK_97A0ADA3A76ED395'); $this->addSql('DROP TABLE ticket'); $this->addSql('ALTER TABLE faq DROP type'); } }