Projet

Général

Profil

Paste
Télécharger (327 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / feeds / tests / modules / feeds_test_field / feeds_test_field.install @ ed9a13f1

1
<?php
2

    
3
/**
4
 * @file
5
 * Defines schema for Feeds test field.
6
 */
7

    
8
/**
9
 * Implements hook_field_schema().
10
 */
11
function feeds_test_field_field_schema($field) {
12
  return array(
13
    'columns' => array(
14
      'value' => array(
15
        'type' => 'varchar',
16
        'length' => 255,
17
        'not null' => FALSE,
18
      ),
19
    ),
20
  );
21
}