migmag-1.0.x-dev/migmag_menu_link_migrate/tests/fixtures/d7-menu-link-db/role.php
migmag_menu_link_migrate/tests/fixtures/d7-menu-link-db/role.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.2.9 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$connection->schema()->createTable('role', array(
'fields' => array(
'rid' => array(
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '64',
'default' => '',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
),
'primary key' => array(
'rid',
),
'unique keys' => array(
'name' => array(
'name',
),
),
'indexes' => array(
'name_weight' => array(
'name',
'weight',
),
),
'mysql_character_set' => 'utf8',
));
