media_migration-8.x-1.x-dev/tests/fixtures/drupal7_nomedia/linkit_profiles.php
tests/fixtures/drupal7_nomedia/linkit_profiles.php
<?php
// phpcs:ignoreFile
/**
* @file
* A database agnostic dump for testing purposes.
*
* This file was generated by the Drupal 9.2.10 db-tools.php script.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$connection->schema()->createTable('linkit_profiles', array(
'fields' => array(
'pid' => array(
'type' => 'serial',
'not null' => TRUE,
'size' => 'normal',
'unsigned' => TRUE,
),
'name' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
),
'admin_title' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
),
'admin_description' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'medium',
),
'profile_type' => array(
'type' => 'varchar',
'not null' => TRUE,
'length' => '128',
'default' => '1',
),
'data' => array(
'type' => 'blob',
'not null' => TRUE,
'size' => 'big',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'size' => 'normal',
'default' => '0',
),
),
'primary key' => array(
'pid',
),
'unique keys' => array(
'name' => array(
'name',
),
),
'indexes' => array(
'pid' => array(
'pid',
),
'profile_type' => array(
'profile_type',
),
),
'mysql_character_set' => 'utf8mb4',
));
