Migration1673263104RemoveCartNameColumn example


        }
    }

    public function testMigrate(): void
    {
        static::assertEquals(
            'NO',
            $this->connection->fetchOne(self::$isCartNameNullable[$this->connection->getDatabase()])
        );

        $migration = new Migration1673263104RemoveCartNameColumn();
        $migration->update($this->connection);

        static::assertEquals(
            'YES',
            $this->connection->fetchOne(self::$isCartNameNullable[$this->connection->getDatabase()])
        );

        $migration = new Migration1673263104RemoveCartNameColumn();
        $migration->update($this->connection);

        static::assertEquals(
            
Home | Imprint | This part of the site doesn't use cookies.