migrations/Version20221216153528.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 Version20221216153528 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('ALTER TABLE address ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  19.         $this->addSql('ALTER TABLE address ADD CONSTRAINT FK_D4E6F81F675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  20.         $this->addSql('CREATE INDEX IDX_D4E6F81F675F31B ON address (author_id)');
  21.         $this->addSql('ALTER TABLE event ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE event ADD CONSTRAINT FK_3BAE0AA7F675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  23.         $this->addSql('CREATE INDEX IDX_3BAE0AA7F675F31B ON event (author_id)');
  24.         $this->addSql('ALTER TABLE file ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  25.         $this->addSql('ALTER TABLE file ADD CONSTRAINT FK_8C9F3610F675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  26.         $this->addSql('CREATE INDEX IDX_8C9F3610F675F31B ON file (author_id)');
  27.         $this->addSql('ALTER TABLE flag ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  28.         $this->addSql('ALTER TABLE flag ADD CONSTRAINT FK_D1F4EB9AF675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  29.         $this->addSql('CREATE INDEX IDX_D1F4EB9AF675F31B ON flag (author_id)');
  30.         $this->addSql('ALTER TABLE open_hours ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  31.         $this->addSql('ALTER TABLE open_hours ADD CONSTRAINT FK_C1A79D8BF675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  32.         $this->addSql('CREATE INDEX IDX_C1A79D8BF675F31B ON open_hours (author_id)');
  33.         $this->addSql('ALTER TABLE pictogram ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  34.         $this->addSql('ALTER TABLE pictogram ADD CONSTRAINT FK_56E0A15FF675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  35.         $this->addSql('CREATE INDEX IDX_56E0A15FF675F31B ON pictogram (author_id)');
  36.         $this->addSql('ALTER TABLE small_image ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  37.         $this->addSql('ALTER TABLE small_image ADD CONSTRAINT FK_56D3453CF675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  38.         $this->addSql('CREATE INDEX IDX_56D3453CF675F31B ON small_image (author_id)');
  39.         $this->addSql('ALTER TABLE tag ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  40.         $this->addSql('ALTER TABLE tag ADD CONSTRAINT FK_389B783F675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  41.         $this->addSql('CREATE INDEX IDX_389B783F675F31B ON tag (author_id)');
  42.         $this->addSql('ALTER TABLE visiting_card ADD author_id BIGINT UNSIGNED DEFAULT NULL');
  43.         $this->addSql('ALTER TABLE visiting_card ADD CONSTRAINT FK_CB2C96CCF675F31B FOREIGN KEY (author_id) REFERENCES users (id)');
  44.         $this->addSql('CREATE INDEX IDX_CB2C96CCF675F31B ON visiting_card (author_id)');
  45.     }
  46.     public function down(Schema $schema): void
  47.     {
  48.         // this down() migration is auto-generated, please modify it to your needs
  49.         $this->addSql('ALTER TABLE address DROP FOREIGN KEY FK_D4E6F81F675F31B');
  50.         $this->addSql('DROP INDEX IDX_D4E6F81F675F31B ON address');
  51.         $this->addSql('ALTER TABLE address DROP author_id');
  52.         $this->addSql('ALTER TABLE event DROP FOREIGN KEY FK_3BAE0AA7F675F31B');
  53.         $this->addSql('DROP INDEX IDX_3BAE0AA7F675F31B ON event');
  54.         $this->addSql('ALTER TABLE event DROP author_id');
  55.         $this->addSql('ALTER TABLE file DROP FOREIGN KEY FK_8C9F3610F675F31B');
  56.         $this->addSql('DROP INDEX IDX_8C9F3610F675F31B ON file');
  57.         $this->addSql('ALTER TABLE file DROP author_id');
  58.         $this->addSql('ALTER TABLE flag DROP FOREIGN KEY FK_D1F4EB9AF675F31B');
  59.         $this->addSql('DROP INDEX IDX_D1F4EB9AF675F31B ON flag');
  60.         $this->addSql('ALTER TABLE flag DROP author_id');
  61.         $this->addSql('ALTER TABLE open_hours DROP FOREIGN KEY FK_C1A79D8BF675F31B');
  62.         $this->addSql('DROP INDEX IDX_C1A79D8BF675F31B ON open_hours');
  63.         $this->addSql('ALTER TABLE open_hours DROP author_id');
  64.         $this->addSql('ALTER TABLE pictogram DROP FOREIGN KEY FK_56E0A15FF675F31B');
  65.         $this->addSql('DROP INDEX IDX_56E0A15FF675F31B ON pictogram');
  66.         $this->addSql('ALTER TABLE pictogram DROP author_id');
  67.         $this->addSql('ALTER TABLE small_image DROP FOREIGN KEY FK_56D3453CF675F31B');
  68.         $this->addSql('DROP INDEX IDX_56D3453CF675F31B ON small_image');
  69.         $this->addSql('ALTER TABLE small_image DROP author_id');
  70.         $this->addSql('ALTER TABLE tag DROP FOREIGN KEY FK_389B783F675F31B');
  71.         $this->addSql('DROP INDEX IDX_389B783F675F31B ON tag');
  72.         $this->addSql('ALTER TABLE tag DROP author_id');
  73.         $this->addSql('ALTER TABLE visiting_card DROP FOREIGN KEY FK_CB2C96CCF675F31B');
  74.         $this->addSql('DROP INDEX IDX_CB2C96CCF675F31B ON visiting_card');
  75.         $this->addSql('ALTER TABLE visiting_card DROP author_id');
  76.     }
  77. }