vendor/bluue/sales-bundle/migrations/Version20240702095950.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace SalesBundleMigrations;
  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 Version20240702095950 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         // this up() migration is auto-generated, please modify it to your needs
  14.         $this->addSql('CREATE TABLE sales_bundle__relaunch_level (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', created_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', updated_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', deleted_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', days INT NOT NULL, subject VARCHAR(255) DEFAULT NULL, content LONGTEXT DEFAULT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_A4283B2FB03A8386 (created_by_id), INDEX IDX_A4283B2F896DBBDE (updated_by_id), INDEX IDX_A4283B2FC76F1F52 (deleted_by_id), INDEX deleted_at (deleted_at), INDEX created_at (created_at), INDEX updated_at (updated_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  15.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level ADD send_notification TINYINT(1) NOT NULL');
  16.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level ADD CONSTRAINT FK_A4283B2FB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  17.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level ADD CONSTRAINT FK_A4283B2F896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  18.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level ADD CONSTRAINT FK_A4283B2FC76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
  19.     }
  20.     public function postUp(Schema $schema): void
  21.     {
  22.         $this->connection->insert('cron_job', [
  23.             'name' => 'sales:unpaid-relaunch',
  24.             'command' => 'bluue-bundle:sales:unpaid-relaunch',
  25.             'schedule' => '0 9 * * *',
  26.             'description' => '',
  27.             'enabled' => 1
  28.         ]);
  29.     }
  30.     public function down(Schema $schema): void
  31.     {
  32.         // this down() migration is auto-generated, please modify it to your needs
  33.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level DROP FOREIGN KEY FK_A4283B2FB03A8386');
  34.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level DROP FOREIGN KEY FK_A4283B2F896DBBDE');
  35.         $this->addSql('ALTER TABLE sales_bundle__relaunch_level DROP FOREIGN KEY FK_A4283B2FC76F1F52');
  36.         $this->addSql('DROP TABLE sales_bundle__relaunch_level');
  37.     }
  38. }