money.install in Money field 7
Same filename and directory in other branches
Install, update and uninstall functions for the money module.
File
money.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the money module.
*/
/**
* Implements hook_field_schema().
*/
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,
),
),
);
}
Functions
Name![]() |
Description |
---|---|
money_field_schema | Implements hook_field_schema(). |