function module_test_schema in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/module_test/module_test.install \module_test_schema()
- 7 modules/simpletest/tests/module_test.install \module_test_schema()
- 10 core/modules/system/tests/modules/module_test/module_test.install \module_test_schema()
Implements hook_schema().
File
- core/
modules/ system/ tests/ modules/ module_test/ module_test.install, line 13 - Install, update and uninstall functions for the module_test module.
Code
function module_test_schema() {
$schema['module_test'] = [
'description' => 'Dummy table to test the behavior of hook_schema() during module installation.',
'fields' => [
'data' => [
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'An example data column for the module.',
],
],
];
return $schema;
}