Spookie/migrations/Version20220424100610.php

32 lines
758 B
PHP
Raw Normal View History

2021-06-01 18:48:20 +02:00
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
2022-05-03 14:52:04 +02:00
final class Version20220424100610 extends AbstractMigration
2021-06-01 18:48:20 +02:00
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
2022-05-03 14:52:04 +02:00
$this->addSql('ALTER TABLE pages ADD slug VARCHAR(255) NOT NULL');
2021-06-01 18:48:20 +02:00
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
2022-05-03 14:52:04 +02:00
$this->addSql('ALTER TABLE pages DROP slug');
2021-06-01 18:48:20 +02:00
}
}