migrations/Version20240419125916.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 Version20240419125916 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 sms_message (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, building_id INT NOT NULL, flat_id INT NOT NULL, text VARCHAR(2048) DEFAULT NULL, type INT DEFAULT NULL, created_at DATETIME NOT NULL, sent_at DATETIME DEFAULT NULL, INDEX IDX_46A7FBA5A76ED395 (user_id), INDEX IDX_46A7FBA54D2A7E12 (building_id), INDEX IDX_46A7FBA5D3331C94 (flat_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE sms_message ADD CONSTRAINT FK_46A7FBA5A76ED395 FOREIGN KEY (user_id) REFERENCES fos_user (id)');
  20.         $this->addSql('ALTER TABLE sms_message ADD CONSTRAINT FK_46A7FBA54D2A7E12 FOREIGN KEY (building_id) REFERENCES building (id) ON DELETE CASCADE');
  21.         $this->addSql('ALTER TABLE sms_message ADD CONSTRAINT FK_46A7FBA5D3331C94 FOREIGN KEY (flat_id) REFERENCES flat (id) ON DELETE CASCADE');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->addSql('ALTER TABLE sms_message DROP FOREIGN KEY FK_46A7FBA5A76ED395');
  27.         $this->addSql('ALTER TABLE sms_message DROP FOREIGN KEY FK_46A7FBA54D2A7E12');
  28.         $this->addSql('ALTER TABLE sms_message DROP FOREIGN KEY FK_46A7FBA5D3331C94');
  29.         $this->addSql('DROP TABLE sms_message');
  30.     }
  31. }