vendor/bluue/sales-bundle/migrations/Version20230824094122.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 Version20230824094122 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__payment_expectation (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', context_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', year VARCHAR(4) NOT NULL, month VARCHAR(2) NOT NULL, amount NUMERIC(20, 6) NOT NULL, INDEX IDX_BB1ADDCB6B00C1CF (context_id), INDEX year (year), INDEX month (month), INDEX amount (amount), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  15.         $this->addSql('ALTER TABLE sales_bundle__payment_expectation ADD CONSTRAINT FK_BB1ADDCB6B00C1CF FOREIGN KEY (context_id) REFERENCES context (id)');
  16.     }
  17.     public function down(Schema $schema): void
  18.     {
  19.         // this down() migration is auto-generated, please modify it to your needs
  20.         $this->addSql('ALTER TABLE sales_bundle__payment_expectation DROP FOREIGN KEY FK_BB1ADDCB6B00C1CF');
  21.         $this->addSql('DROP TABLE sales_bundle__payment_expectation');
  22.     }
  23.     public function postUp(Schema $schema): void
  24.     {
  25.         parent::postUp($schema);
  26.         $this->connection->insert('cron_job', [
  27.             'name' => 'calc-payment-expectations',
  28.             'command' => 'bluue-bundle:sales:calc-payment-expectations',
  29.             'schedule' => '0 1 1 * *',
  30.             'description' => '',
  31.             'enabled' => 1
  32.         ]);
  33.     }
  34. }