Deprecated: Constant E_STRICT is deprecated in /home/biocabaz/public_html/readytoshoot/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/biocabaz/public_html/readytoshoot/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

migrations/Version20220414090509.php line 1

Open in your IDE?
  1. <?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 Version20220414090509 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('ALTER TABLE motorist_message ADD motorist_id INT NOT NULL, ADD sender_id INT DEFAULT NULL');
            $this->addSql('ALTER TABLE motorist_message ADD CONSTRAINT FK_E448243FE38C3B86 FOREIGN KEY (motorist_id) REFERENCES motorist (id)');
            $this->addSql('ALTER TABLE motorist_message ADD CONSTRAINT FK_E448243FF624B39D FOREIGN KEY (sender_id) REFERENCES user (id)');
            $this->addSql('CREATE INDEX IDX_E448243FE38C3B86 ON motorist_message (motorist_id)');
            $this->addSql('CREATE INDEX IDX_E448243FF624B39D ON motorist_message (sender_id)');
        }
    
        public function down(Schema $schema): void
        {
            // this down() migration is auto-generated, please modify it to your needs
            $this->addSql('ALTER TABLE motorist_message DROP FOREIGN KEY FK_E448243FE38C3B86');
            $this->addSql('ALTER TABLE motorist_message DROP FOREIGN KEY FK_E448243FF624B39D');
            $this->addSql('DROP INDEX IDX_E448243FE38C3B86 ON motorist_message');
            $this->addSql('DROP INDEX IDX_E448243FF624B39D ON motorist_message');
            $this->addSql('ALTER TABLE motorist_message DROP motorist_id, DROP sender_id');
        }
    }