function money_field_schema in Money field 7
Implements hook_field_schema().
File
- ./
money.install, line 11 - Install, update and uninstall functions for the money module.
Code
function money_field_schema($field) {
return array(
'columns' => array(
'amount' => array(
'type' => 'numeric',
'precision' => $field['settings']['precision'],
'scale' => $field['settings']['scale'],
'not null' => FALSE,
),
'currency' => array(
'type' => 'varchar',
'length' => 3,
'not null' => FALSE,
),
),
);
}