events/Tests/Functional/Import/DestinationDataTest/Fixtures/Database/Structure.php
Daniel Siepmann 53ee309768
Migrate all database fixtures (#10)
We switched to PHPDataSets already but didn't migrate all usages.
This commit now migrates all usages left behind.
2023-05-15 11:58:19 +02:00

19 lines
352 B
PHP

<?php
return [
'pages' => [
[
'pid' => '0',
'uid' => '1',
'title' => 'Root page',
'slug' => '1',
'is_siteroot' => '1',
],
[
'pid' => '1',
'uid' => '2',
'title' => 'Storage',
'doktype' => '254',
],
],
];