You are here

money.install in Money field 7

Same filename and directory in other branches
  1. 6 money.install

Install, update and uninstall functions for the money module.

File

money.install
View 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

Namesort descending Description
money_field_schema Implements hook_field_schema().