addProductBoxLayoutColumn example



class Migrations_Migration414 extends Shopware\Components\Migrations\AbstractMigration
{
    public function up($modus)
    {
        $this->addProductBoxLayoutColumn();
        $this->addSearchProductBoxLayoutSwitch();
    }

    private function addProductBoxLayoutColumn()
    {
        $sql = <<<EOT ALTER TABLE s_categories ADD product_box_layout varchar(50) NULL DEFAULT NULL EOT;
        $this->addSql($sql);
    }

    
Home | Imprint | This part of the site doesn't use cookies.