Initial commit: CloudOps infrastructure platform

This commit is contained in:
root
2026-04-09 19:58:57 +02:00
commit 1166a52f26
7762 changed files with 839452 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<?php
declare(strict_types=1);
namespace Mautic\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Mautic\CoreBundle\Doctrine\PreUpAssertionMigration;
final class Version20250828070131 extends PreUpAssertionMigration
{
protected const TABLE_NAME = 'sms_messages';
protected function preUpAssertions(): void
{
$column = 'translation_parent_id';
$this->skipAssertion(fn (Schema $schema) => $schema->getTable($this->getPrefixedTableName())->hasColumn($column), "Column {$this->prefix}sms_messages.{$column} already exists");
}
public function up(Schema $schema): void
{
$table = $schema->getTable($this->getPrefixedTableName());
// translation_parent_id
if (!$table->hasColumn('translation_parent_id')) {
$table->addColumn('translation_parent_id', 'integer', [
'unsigned' => true,
'notnull' => false,
]);
$table->addIndex(['translation_parent_id'], 'IDX_SMS_TRANSLATION_PARENT');
$table->addForeignKeyConstraint(
$table,
['translation_parent_id'],
['id'],
['onDelete' => 'CASCADE'],
'FK_SMS_TRANSLATION_PARENT'
);
}
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE '.$this->getPrefixedTableName().' DROP FOREIGN KEY FK_SMS_TRANSLATION_PARENT');
$this->addSql('DROP INDEX IDX_SMS_TRANSLATION_PARENT ON '.$this->getPrefixedTableName());
$this->addSql('ALTER TABLE '.$this->getPrefixedTableName().' DROP COLUMN translation_parent_id');
}
}