use Shopware\Core\Framework\Uuid\Uuid;
/**
* @internal
*/
class TreeUpdaterTest extends TestCase
{ use IntegrationTestBehaviour;
protected function setUp(): void
{ $this->
stopTransactionAfter();
$this->
getContainer() ->
get(Connection::
class) ->
executeStatement( 'CREATE TABLE IF NOT EXISTS `test_tree` (
`id` BINARY(16) NOT NULL,
`version_id` BINARY(16) NOT NULL,
`parent_id` BINARY(16) NULL,
`parent_version_id` BINARY(16) NULL,
`test_level` INT(11) unsigned NOT NULL DEFAULT 1,
`test_path` LONGTEXT COLLATE utf8mb4_unicode_ci,
`created_at` DATETIME(3) NOT NULL,
`updated_at` DATETIME(3) NULL,
PRIMARY KEY (`id`, `version_id`)
)'