migrations/Version20220727102322.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220727102322 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE TABLE external_link (id INT AUTO_INCREMENT NOT NULL, franchise_id INT DEFAULT NULL, external_link_name_id INT DEFAULT NULL, type VARCHAR(255) NOT NULL, link VARCHAR(255) DEFAULT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, file_name VARCHAR(255) DEFAULT NULL, file_original_name VARCHAR(255) DEFAULT NULL, file_mime_type VARCHAR(255) DEFAULT NULL, file_size INT DEFAULT NULL, file_dimensions LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:simple_array)\', INDEX IDX_A3B3F9DD523CAB89 (franchise_id), INDEX IDX_A3B3F9DDC278E5F1 (external_link_name_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE external_link ADD CONSTRAINT FK_A3B3F9DD523CAB89 FOREIGN KEY (franchise_id) REFERENCES franchise (id)');
  20.         $this->addSql('ALTER TABLE external_link ADD CONSTRAINT FK_A3B3F9DDC278E5F1 FOREIGN KEY (external_link_name_id) REFERENCES external_link_name (id)');
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         // this down() migration is auto-generated, please modify it to your needs
  25.         $this->addSql('DROP TABLE external_link');
  26.     }
  27. }