Ignore:
Timestamp:
02/14/12 16:52:04 (12 years ago)
Author:
acoutinho
Message:

Ticket #2434 - Implementacao anexos, acls e delegacao de participantes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoCalendar/setup/tables_current.inc.php

    r5441 r5514  
    3131                                'type' => array('type' => 'varchar','precision' => '50','nullable' => False), 
    3232                                'name' => array('type' => 'varchar','precision' => '255','nullable' => False), 
    33                                 'size' => array('type' => 'varchar','precision' => '255','nullable' => False) 
     33                                'size' => array('type' => 'varchar','precision' => '255','nullable' => False), 
     34                                'owner' => array('type' => 'int', 'precision' => '8','nullable' => True) 
    3435                        ), 
    3536                        'pk' => array('id'), 
     
    3839                        'uc' => array() 
    3940                ), 
    40                  
    41          
    42                  
     41                                 
    4342                'calendar' => array( 
    4443            'fd' => array( 
     
    136135                'user_info_id' => array(  'type' => 'int', 'precision' => '8', 'nullable' => False), 
    137136                'object_id' => array(  'type' => 'int', 'precision' => '8', 'nullable' => True), 
    138                 'delegated_to' => array( 'type' => 'int', 'precision' => '8','default' => 0, 'nullable' => False), 
     137                'delegated_from' => array( 'type' => 'int', 'precision' => '8','default' => 0, 'nullable' => False), 
    139138                'is_organizer' => array( 'type' => 'int', 'precision' => '2', 'default' => 0, 'nullable' => False), 
    140139                'is_external' => array( 'type' => 'int', 'precision' => '2', 'default' => 0, 'nullable' => False), 
    141                 'participant_status_id' => array( 'type' => 'int', 'precision' => '8', 'nullable' => false , 'default' => 4) 
     140                'participant_status_id' => array( 'type' => 'int', 'precision' => '8', 'nullable' => false , 'default' => 4), 
     141                                'acl' => array('type' => 'varchar', 'precision' => '10' ,'default' => 'r', 'nullable' => False), 
     142                                'receive_notification' => array( 'type' => 'int', 'precision' => '2', 'default' => 1, 'nullable' => False) 
    142143            ), 
    143144            'pk' => array('id'), 
Note: See TracChangeset for help on using the changeset viewer.