📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: Version20260703100000.php
<?php declare(strict_types=1); namespace DoctrineMigrations; use Doctrine\DBAL\Schema\Schema; use Doctrine\Migrations\AbstractMigration; final class Version20260703100000 extends AbstractMigration { public function getDescription(): string { return 'Add is_missing_from_ssl_list to certificates to permanently exclude sync candidates absent from the Gateway SSL list'; } public function up(Schema $schema): void { $this->addSql('ALTER TABLE certificates ADD COLUMN is_missing_from_ssl_list BOOLEAN DEFAULT 0 NOT NULL'); } public function down(Schema $schema): void { } }
Save