|
|
@@ -1,31 +0,0 @@ |
|
|
|
<?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 Version20210609090245 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 group_user DROP title, DROP description, DROP meta_title, DROP meta_description, DROP old_urls, DROP slug, DROP position, DROP status'); |
|
|
|
} |
|
|
|
|
|
|
|
public function down(Schema $schema): void |
|
|
|
{ |
|
|
|
// this down() migration is auto-generated, please modify it to your needs |
|
|
|
$this->addSql('ALTER TABLE group_user ADD title VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, ADD description LONGTEXT CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, ADD meta_title VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, ADD meta_description LONGTEXT CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, ADD old_urls LONGTEXT CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci` COMMENT \'(DC2Type:array)\', ADD slug VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, ADD position DOUBLE PRECISION NOT NULL, ADD status DOUBLE PRECISION NOT NULL'); |
|
|
|
} |
|
|
|
} |