From f11b788b5af29d325f17ebb77c321309a41e5e70 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 14 Mar 2011 12:53:49 -0700 Subject: [PATCH] Extended profile - add a date value for fields --- plugins/ExtendedProfile/Profile_detail.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/ExtendedProfile/Profile_detail.php b/plugins/ExtendedProfile/Profile_detail.php index f9f4d00098..96869b0e63 100644 --- a/plugins/ExtendedProfile/Profile_detail.php +++ b/plugins/ExtendedProfile/Profile_detail.php @@ -64,6 +64,7 @@ class Profile_detail extends Managed_DataObject public $field_name; // name public $field_value; // primary text value public $value_index; // relative ordering of multiple values in the same field + public $date; // related date public $ref_profile; // for people types, allows pointing to a known profile in the system public $created; public $modified; @@ -118,6 +119,7 @@ class Profile_detail extends Managed_DataObject ), 'value_index' => array('type' => 'int'), 'field_value' => array('type' => 'text'), + 'date' => array('type' => 'datetime'), 'rel' => array('type' => 'varchar', 'length' => 16), 'rel_profile' => array('type' => 'int'), 'created' => array(