Changed the category field to a nullable field.

This commit is contained in:
skeeter 2001-08-30 16:07:09 +00:00
parent f41e2ae4c3
commit a08d84199c

View File

@ -668,7 +668,7 @@
'fd' => array(
'cal_id' => array('type' => 'auto', 'nullable' => False),
'owner' => array('type' => 'int', 'precision' => 8, 'nullable' => False),
'category' => array('type' => 'int', 'precision' => 8, 'default' => '0', 'nullable' => False),
'category' => array('type' => 'int', 'precision' => 8, 'default' => '0', 'nullable' => True),
'groups' => array('type' => 'varchar', 'precision' => 255, 'nullable' => True),
'datetime' => array('type' => 'int', 'precision' => 8, 'nullable' => True),
'mdatetime' => array('type' => 'int', 'precision' => 8, 'nullable' => True),