/[drupal]/contributions/modules/media_mover/media_mover_api.install
ViewVC logotype

Diff of /contributions/modules/media_mover/media_mover_api.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.2.16.2.5.2.12, Mon Oct 19 02:52:57 2009 UTC revision 1.1.2.16.2.5.2.13, Tue Oct 20 00:48:11 2009 UTC
# Line 1  Line 1 
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
# Line 39  function media_mover_api_schema() { Line 39  function media_mover_api_schema() {
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',
# Line 62  function media_mover_api_schema() { Line 62  function media_mover_api_schema() {
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    );    );

Legend:
Removed from v.1.1.2.16.2.5.2.12  
changed lines
  Added in v.1.1.2.16.2.5.2.13

  ViewVC Help
Powered by ViewVC 1.1.2