function module_test_schema
Same name in other branches
- 7.x modules/simpletest/tests/module_test.install \module_test_schema()
- 9 core/modules/system/tests/modules/module_test/module_test.install \module_test_schema()
- 10 core/modules/system/tests/modules/module_test/module_test.install \module_test_schema()
- 11.x 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
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.