migrations/Version20220820091620.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;/*** Auto-generated Migration: Please modify to your needs!*/final class Version20220820091620 extends AbstractMigration{public function getDescription(): string{return '';}public function up(Schema $schema): void{// this up() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE worksheet_content ADD index INT NOT NULL');$this->addSql('ALTER TABLE working_content ADD modifier VARCHAR(64) NOT NULL');$this->addSql('ALTER TABLE working_content ADD index INT NOT NULL');}public function down(Schema $schema): void{// this down() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE worksheet_content DROP index');$this->addSql('ALTER TABLE working_content DROP modifier');$this->addSql('ALTER TABLE working_content DROP index');}}