X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FLocal_group.php;h=0cd2b24c3b5ddbccffc75ce1fe970205f33c0264;hb=c12bb0ab6a2dbfc36113e5d45114a7e1671ff018;hp=9e95102d8503753a034bc28ee9fd53da391436cd;hpb=6b717a6a6917bd024431f8d1e0835325e0194421;p=quix0rs-gnu-social.git diff --git a/classes/Local_group.php b/classes/Local_group.php index 9e95102d85..0cd2b24c3b 100644 --- a/classes/Local_group.php +++ b/classes/Local_group.php @@ -11,8 +11,8 @@ class Local_group extends Managed_DataObject public $__table = 'local_group'; // table name public $group_id; // int(4) primary_key not_null public $nickname; // varchar(64) unique_key - public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00 - public $modified; // timestamp not_null default_CURRENT_TIMESTAMP + public $created; // datetime() not_null default_0000-00-00%2000%3A00%3A00 + public $modified; // datetime() not_null default_CURRENT_TIMESTAMP /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE @@ -24,9 +24,8 @@ class Local_group extends Managed_DataObject 'fields' => array( 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group represented'), 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'group represented'), - - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + 'created' => array('type' => 'datetime', 'not null' => true, 'default' => '0000-00-00 00:00:00', 'description' => 'date this record was created'), + 'modified' => array('type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'), ), 'primary key' => array('group_id'), 'foreign keys' => array( @@ -50,7 +49,7 @@ class Local_group extends Managed_DataObject $group->find(true); if (!$group instanceof User_group) { common_log(LOG_ERR, 'User_group does not exist for Local_group: '.$this->group_id); - throw new NoResultException($group); + throw new NoSuchGroupException(array('id' => $this->group_id)); } return $group; }