123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- function materio_showroom_field_schema($field) {
- $columns = array(
- 'showroom_tid' => array('type' => 'int', 'not null' => FALSE),
- 'location' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE),
- );
- $indexes = array(
- 'location' => array('location'),
- );
- return array(
- 'columns' => $columns,
- 'indexes' => $indexes,
- );
- }
|