<?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 Version20230529095927 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 inspiration_gallery (id INT AUTO_INCREMENT NOT NULL, domain_id INT DEFAULT NULL, domain_lang_id INT DEFAULT NULL, media_id INT DEFAULT NULL, inspiration_id INT DEFAULT NULL, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, deleted_at DATETIME DEFAULT NULL, meta_title VARCHAR(255) DEFAULT NULL, meta_description VARCHAR(1000) DEFAULT NULL, meta_keywords VARCHAR(255) DEFAULT NULL, information_no_follow TINYINT(1) DEFAULT NULL, og_title VARCHAR(255) DEFAULT NULL, og_description VARCHAR(1000) DEFAULT NULL, og_image VARCHAR(255) DEFAULT NULL, og_image_secure VARCHAR(255) DEFAULT NULL, INDEX IDX_7B9845D5115F0EE5 (domain_id), INDEX IDX_7B9845D5E9F626BC (domain_lang_id), INDEX IDX_7B9845D5EA9FDD75 (media_id), INDEX IDX_7B9845D52B726C5F (inspiration_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE inspiration_gallery ADD CONSTRAINT FK_7B9845D5115F0EE5 FOREIGN KEY (domain_id) REFERENCES domain (id)');
$this->addSql('ALTER TABLE inspiration_gallery ADD CONSTRAINT FK_7B9845D5E9F626BC FOREIGN KEY (domain_lang_id) REFERENCES domain_lang (id)');
$this->addSql('ALTER TABLE inspiration_gallery ADD CONSTRAINT FK_7B9845D5EA9FDD75 FOREIGN KEY (media_id) REFERENCES media__media (id)');
$this->addSql('ALTER TABLE inspiration_gallery ADD CONSTRAINT FK_7B9845D52B726C5F FOREIGN KEY (inspiration_id) REFERENCES inspiration (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE inspiration_gallery DROP FOREIGN KEY FK_7B9845D5115F0EE5');
$this->addSql('ALTER TABLE inspiration_gallery DROP FOREIGN KEY FK_7B9845D5E9F626BC');
$this->addSql('ALTER TABLE inspiration_gallery DROP FOREIGN KEY FK_7B9845D5EA9FDD75');
$this->addSql('ALTER TABLE inspiration_gallery DROP FOREIGN KEY FK_7B9845D52B726C5F');
$this->addSql('DROP TABLE inspiration_gallery');
}
}