<?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 Version20240411214807 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 sale_shipment_pedidos_ya ADD shipping_id VARCHAR(40) DEFAULT NULL, DROP online_support_url, CHANGE confirmation_code confirmation_code VARCHAR(40) DEFAULT NULL, CHANGE api_status api_status VARCHAR(20) DEFAULT NULL, CHANGE share_location_url share_location_url VARCHAR(200) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE sale_shipment_pedidos_ya ADD online_support_url VARCHAR(200) NOT NULL, DROP shipping_id, CHANGE confirmation_code confirmation_code VARCHAR(40) NOT NULL, CHANGE api_status api_status VARCHAR(20) NOT NULL, CHANGE share_location_url share_location_url VARCHAR(200) NOT NULL');
}
}