Update to match the updates

This commit is contained in:
Miles Lott 2001-08-08 13:46:00 +00:00
parent 8694494bff
commit ed5f6371d1

View File

@ -258,7 +258,6 @@
'ix' => array(),
'uc' => array()
),
// Begin j3rry
'phpgw_log' => array(
'fd' => array(
'log_id' => array('type' => 'auto', 'precision' => 4, 'nullable' => False),
@ -282,13 +281,14 @@
'log_msg_severity' => array('type' => 'char', 'precision' => 1, 'nullable' => False),
'log_msg_code' => array('type' => 'varchar', 'precision' => 30, 'nullable' => False),
'log_msg_msg' => array('type' => 'text', 'nullable' => False),
'log_msg_parms' => array('type' => 'text', 'nullable' => False)
'log_msg_parms' => array('type' => 'text', 'nullable' => False),
'log_msg_file' => array('type' => 'varchar', 'precision' => 255, 'nullable' => False),
'log_msg_line' => array('type' => 'int', 'precision' => 4, 'nullable' => False)
),
'pk' => array('log_msg_log_id', 'log_msg_seq_no'),
'fk' => array(),
'ix' => array(),
'uc' => array()
)
// End j3rry
);
?>