migrations/Version20240226132403.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 Version20240226132403 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 v2_currencies (id UUID NOT NULL, short_name VARCHAR(4) NOT NULL, full_name VARCHAR(100) NOT NULL, PRIMARY KEY(id))');
  19.         $this->addSql('COMMENT ON COLUMN v2_currencies.id IS \'(DC2Type:uuid)\'');
  20.         $this->addSql('CREATE TABLE v2_exchange_rates (id UUID NOT NULL, reporting_period_id UUID NOT NULL, from_currency UUID NOT NULL, to_currency UUID NOT NULL, rate NUMERIC(10, 2) NOT NULL, custom_rate NUMERIC(10, 2) NOT NULL, edited_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, PRIMARY KEY(id))');
  21.         $this->addSql('CREATE INDEX IDX_2D9E515A2832EB1C ON v2_exchange_rates (reporting_period_id)');
  22.         $this->addSql('CREATE INDEX IDX_2D9E515A2FB968A5 ON v2_exchange_rates (from_currency)');
  23.         $this->addSql('CREATE INDEX IDX_2D9E515AA40F1691 ON v2_exchange_rates (to_currency)');
  24.         $this->addSql('CREATE UNIQUE INDEX UNIQ_2D9E515A2832EB1C2FB968A5A40F1691 ON v2_exchange_rates (reporting_period_id, from_currency, to_currency)');
  25.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.id IS \'(DC2Type:uuid)\'');
  26.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.reporting_period_id IS \'(DC2Type:uuid)\'');
  27.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.from_currency IS \'(DC2Type:uuid)\'');
  28.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.to_currency IS \'(DC2Type:uuid)\'');
  29.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.edited_at IS \'(DC2Type:datetime_immutable)\'');
  30.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.created_at IS \'(DC2Type:datetime_immutable)\'');
  31.         $this->addSql('COMMENT ON COLUMN v2_exchange_rates.updated_at IS \'(DC2Type:datetime_immutable)\'');
  32.         $this->addSql('ALTER TABLE v2_exchange_rates ADD CONSTRAINT FK_2D9E515A2832EB1C FOREIGN KEY (reporting_period_id) REFERENCES v2_reporting_period (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
  33.         $this->addSql('ALTER TABLE v2_exchange_rates ADD CONSTRAINT FK_2D9E515A2FB968A5 FOREIGN KEY (from_currency) REFERENCES v2_currencies (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
  34.         $this->addSql('ALTER TABLE v2_exchange_rates ADD CONSTRAINT FK_2D9E515AA40F1691 FOREIGN KEY (to_currency) REFERENCES v2_currencies (id) ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE');
  35.     }
  36.     public function down(Schema $schema): void
  37.     {
  38.         // this down() migration is auto-generated, please modify it to your needs
  39.         $this->addSql('ALTER TABLE v2_exchange_rates DROP CONSTRAINT FK_2D9E515A2FB968A5');
  40.         $this->addSql('ALTER TABLE v2_exchange_rates DROP CONSTRAINT FK_2D9E515AA40F1691');
  41.         $this->addSql('DROP TABLE v2_currencies');
  42.         $this->addSql('DROP TABLE v2_exchange_rates');
  43.     }
  44. }