Skip to content

Commit

Permalink
Switch from native enums to doctrine enums
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 committed Oct 21, 2023
1 parent 1d5f4ab commit 78f27fa
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions migrations/Version20231021222125.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?php

declare(strict_types=1);

namespace DoctrineMigrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;

/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20231021222125 extends AbstractMigration
{
public function getDescription(): string
{
return 'Switch from native enums to doctrine enums';
}

public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE mods ALTER status TYPE VARCHAR(255)');
$this->addSql('ALTER TABLE mods ALTER type TYPE VARCHAR(255)');
$this->addSql('ALTER TABLE mods ALTER type SET NOT NULL');
$this->addSql('COMMENT ON COLUMN mods.status IS \'(DC2Type:mod_status_enum)\'');
$this->addSql('COMMENT ON COLUMN mods.type IS \'(DC2Type:mod_type_enum)\'');
}

public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE mods ALTER type TYPE VARCHAR(255)');
$this->addSql('ALTER TABLE mods ALTER type DROP NOT NULL');
$this->addSql('ALTER TABLE mods ALTER status TYPE VARCHAR(255)');
$this->addSql('COMMENT ON COLUMN mods.type IS NULL');
$this->addSql('COMMENT ON COLUMN mods.status IS NULL');
}
}

0 comments on commit 78f27fa

Please sign in to comment.