'', 'fields' => array( 'entity_type' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, ), 'bundle' => array( 'description' => 'The {node_type}.type of this node.', 'type' => 'varchar', 'length' => 128, 'default' => NULL, ), 'entity_id' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'description' => 'The entity id this data is attached to', ), 'fulcrm_type' => array( 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'description' => 'The fulcrm model/type', ), 'fulcrm_pk' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'description' => 'The fulcrm model primary key', ), ), 'primary key' => array( 'entity_type', 'bundle', 'entity_id' ), 'unique keys' => array( 'fulcrm_key' => array( 'fulcrm_type', 'fulcrm_pk' ), ), 'indexes' => array( 'fulcrm_index' => array( 'fulcrm_type', 'fulcrm_pk' ), ), ); return $schema; }