1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- function field_example_field_schema($field) {
- $columns = array(
- 'rgb' => array('type' => 'varchar', 'length' => 7, 'not null' => FALSE),
- );
- $indexes = array(
- 'rgb' => array('rgb'),
- );
- return array(
- 'columns' => $columns,
- 'indexes' => $indexes,
- );
- }
|