| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
/* $Id: media_mover_api.install,v 1.1.2.16.2.5.2.11 2009/10/18 14:22:00 arthuregg Exp $ */ |
/* $Id: media_mover_api.install,v 1.1.2.16.2.5.2.12 2009/10/19 02:52:57 arthuregg Exp $ */ |
| 4 |
|
|
| 5 |
/** |
/** |
| 6 |
* @FILE media mover db files |
* @FILE media mover db files |
| 39 |
'fid' => array('type' => 'int', 'unsigned' => TRUE, 'description' => t('Drupal file id')), |
'fid' => array('type' => 'int', 'unsigned' => TRUE, 'description' => t('Drupal file id')), |
| 40 |
'cid' => array('type' => 'int', 'unsigned' => TRUE, 'description' => t('Configuration id')), |
'cid' => array('type' => 'int', 'unsigned' => TRUE, 'description' => t('Configuration id')), |
| 41 |
'sid' => array('type' => 'int', 'unsigned' => TRUE, 'description' => t('Step ID that this file is currently in')), |
'sid' => array('type' => 'int', 'unsigned' => TRUE, 'description' => t('Step ID that this file is currently in')), |
| 42 |
'current_step' => array('type' => 'int', 'unsigned' => TRUE), |
|
| 43 |
'filepath_in' => array( |
'filepath_in' => array( |
| 44 |
'type' => 'text', |
'type' => 'text', |
| 45 |
'size' => 'medium', |
'size' => 'medium', |
| 62 |
'size' => 'medium', |
'size' => 'medium', |
| 63 |
'description' => t('All data associated with this file'), |
'description' => t('All data associated with this file'), |
| 64 |
), |
), |
| 65 |
|
'steps' => array( |
| 66 |
|
'type' => 'text', |
| 67 |
|
'size' => 'medium', |
| 68 |
|
'description' => t('Step data for this file including module, action, filepath'), |
| 69 |
|
), |
| 70 |
), |
), |
| 71 |
'indexes' => array ( |
'indexes' => array ( |
| 72 |
'mmfid' => array('mmfid'), |
'mmfid' => array('mmfid'), |
| 73 |
'nid' => array('nid'), |
'nid' => array('nid'), |
| 74 |
'cid' => array('cid'), |
'cid' => array('cid'), |
| 75 |
|
'fid' => array('fid'), |
| 76 |
), |
), |
| 77 |
'primary key' => array('mmfid'), |
'primary key' => array('mmfid'), |
| 78 |
); |
); |