<?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 Version20250725081705 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 payment ADD updated_at DATETIME DEFAULT NULL, CHANGE created_at created_at DATETIME NOT NULL');
$this->addSql('ALTER TABLE payment RENAME INDEX idx_6d28840d4f3ki93f TO IDX_6D28840D1FE9DE17');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE payment DROP updated_at, CHANGE created_at created_at DATETIME DEFAULT NULL');
$this->addSql('ALTER TABLE payment RENAME INDEX idx_6d28840d1fe9de17 TO IDX_6D28840D4F3KI93F');
}
}