Changeset 5514 for trunk/expressoCalendar/setup/tables_current.inc.php
- Timestamp:
- 02/14/12 16:52:04 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/expressoCalendar/setup/tables_current.inc.php
r5441 r5514 31 31 'type' => array('type' => 'varchar','precision' => '50','nullable' => False), 32 32 '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) 34 35 ), 35 36 'pk' => array('id'), … … 38 39 'uc' => array() 39 40 ), 40 41 42 41 43 42 'calendar' => array( 44 43 'fd' => array( … … 136 135 'user_info_id' => array( 'type' => 'int', 'precision' => '8', 'nullable' => False), 137 136 '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), 139 138 'is_organizer' => array( 'type' => 'int', 'precision' => '2', 'default' => 0, 'nullable' => False), 140 139 '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) 142 143 ), 143 144 'pk' => array('id'),
Note: See TracChangeset
for help on using the changeset viewer.