migrations/Version20241023084204.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 Version20241023084204 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 packings ADD autoNetWeight TINYINT(1) DEFAULT 0 NOT NULL');$this->addSql('ALTER TABLE shipments ADD deliveryName VARCHAR(255) DEFAULT NULL');}public function down(Schema $schema): void{// this down() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE packings DROP autoNetWeight');$this->addSql('ALTER TABLE shipments DROP deliveryName');}}