function 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 23 
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);
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
