function schema_test_schema in Schema 8
Same name and namespace in other branches
- 7 tests/schema_test/schema_test.install \schema_test_schema()
Implements hook_schema().
File
- tests/
schema_test/ schema_test.install, line 6
Code
function schema_test_schema() {
$schema['schema_test_1'] = array(
'fields' => array(
'fid' => array(
'type' => 'int',
'not null' => TRUE,
),
'destid' => array(
'type' => 'int',
'not null' => TRUE,
),
),
);
return $schema;
}