Ignore:
Timestamp:
03/13/12 18:23:02 (12 years ago)
Author:
natan
Message:

Ticket #2434 - Implementacao da repeticao de eventos na agenda e adicao de suporte a relacionamentos 1x1 na API

File:
1 edited

Legend:

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

    r5592 r5715  
    215215                'id' => array( 'type' => 'auto', 'nullable' => False), 
    216216                'frequency' => array(  'type' => 'varchar','precision' => '20', 'nullable' => False), 
    217                 'until' => array(  'type' => 'int', 'precision' => '8', 'nullable' => False), 
     217                'until' => array(  'type' => 'int', 'precision' => '8', 'nullable' => True), 
     218                'dtstart' => array(  'type' => 'bigint','precision' => '16', 'nullable' => True), 
    218219                'count' => array(  'type' => 'int', 'precision' => '8', 'nullable' => True), 
    219220                'object_id' => array(  'type' => 'int', 'precision' => '8', 'nullable' => False), 
     
    236237                ), 
    237238 
     239            'calendar_repeat_ranges' => array( 
     240            'fd' => array( 
     241                'id' => array( 'type' => 'auto', 'nullable' => False), 
     242                'range_start' => array(  'type' => 'bigint','precision' => '16', 'nullable' => False), 
     243                'range_end' => array(  'type' => 'bigint', 'precision' => '16', 'nullable' => False), 
     244                'user_info_id' => array(  'type' => 'bigint', 'precision' => '16', 'nullable' => False) 
     245            ), 
     246            'pk' => array('id'), 
     247            'fk' => array(), 
     248            'ix' => array(), 
     249            'uc' => array() 
     250                ), 
     251 
     252            'calendar_repeat_occurrence' => array( 
     253            'fd' => array( 
     254                'id' => array( 'type' => 'auto', 'nullable' => False), 
     255                'occurrence' => array(  'type' => 'bigint','precision' => '16', 'nullable' => False), 
     256                'repeat_id' => array(  'type' => 'int', 'precision' => '8', 'nullable' => False) 
     257            ), 
     258 
     259            'pk' => array('id'), 
     260            'fk' => array('repeat_id'), 
     261            'ix' => array(), 
     262            'uc' => array() 
     263                ), 
     264 
    238265                'calendar_signature' => array( 
    239266            'fd' => array( 
Note: See TracChangeset for help on using the changeset viewer.