public function RoutingFixtures::createTables in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Routing/RoutingFixtures.php \Drupal\Tests\Core\Routing\RoutingFixtures::createTables()
Create the tables required for the sample data.
Parameters
\Drupal\Core\Database\Connection $connection: The connection to use to create the tables.
File
- core/tests/ Drupal/ Tests/ Core/ Routing/ RoutingFixtures.php, line 21 
Class
- RoutingFixtures
- Utility methods to generate sample data, database configuration, etc.
Namespace
Drupal\Tests\Core\RoutingCode
public function createTables(Connection $connection) {
  $tables = $this
    ->routingTableDefinition();
  $schema = $connection
    ->schema();
  foreach ($tables as $name => $table) {
    $schema
      ->dropTable($name);
    $schema
      ->createTable($name, $table);
  }
}