<?php public function testGenerateTableWithAutoincrement(): void
{
$columnName = strtoupper('id' . uniqid());
$tableName = strtoupper('table' . uniqid());
$table = new Table($tableName);
$column = $table->addColumn($columnName, 'integer');
$column->setAutoincrement(true);