migrations/Version20230204105537.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 Version20230204105537 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 news_item_user (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, news_item_id INT NOT NULL, name VARCHAR(255) DEFAULT NULL, last_name VARCHAR(255) DEFAULT NULL, email VARCHAR(255) DEFAULT NULL, phone VARCHAR(255) DEFAULT NULL, INDEX IDX_5986CD73A76ED395 (user_id), INDEX IDX_5986CD73458B4EB8 (news_item_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE news_item_user ADD CONSTRAINT FK_5986CD73A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  20.         $this->addSql('ALTER TABLE news_item_user ADD CONSTRAINT FK_5986CD73458B4EB8 FOREIGN KEY (news_item_id) REFERENCES news_item (id)');
  21.        
  22.         $this->addSql('ALTER TABLE credits_acknowledgment_request CHANGE is_notification_sent is_notification_sent TINYINT(1) NOT NULL');
  23.         $this->addSql('ALTER TABLE equipment_issue CHANGE is_notification_sent is_notification_sent TINYINT(1) NOT NULL');
  24.   
  25.         $this->addSql('ALTER TABLE new_student_enrollment CHANGE is_notification_sent is_notification_sent TINYINT(1) NOT NULL');
  26.         $this->addSql('ALTER TABLE payroll CHANGE is_notification_sent is_notification_sent TINYINT(1) NOT NULL');
  27.         $this->addSql('ALTER TABLE tic_issue CHANGE is_notification_sent is_notification_sent TINYINT(1) NOT NULL');
  28.     }
  29.     public function down(Schema $schema): void
  30.     {
  31.         // this down() migration is auto-generated, please modify it to your needs
  32.         $this->addSql('DROP TABLE news_item_user');
  33.      
  34.         $this->addSql('ALTER TABLE credits_acknowledgment_request CHANGE is_notification_sent is_notification_sent TINYINT(1) DEFAULT 0 NOT NULL');
  35.         $this->addSql('ALTER TABLE equipment_issue CHANGE is_notification_sent is_notification_sent TINYINT(1) DEFAULT 0 NOT NULL');
  36.         $this->addSql('ALTER TABLE new_student_enrollment CHANGE is_notification_sent is_notification_sent TINYINT(1) DEFAULT 0 NOT NULL');
  37.         $this->addSql('ALTER TABLE payroll CHANGE is_notification_sent is_notification_sent TINYINT(1) DEFAULT 0 NOT NULL');
  38.         $this->addSql('ALTER TABLE tic_issue CHANGE is_notification_sent is_notification_sent TINYINT(1) DEFAULT 0 NOT NULL');
  39.     }
  40. }