| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Table Definition for session | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  | require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-11 21:20:09 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Table definition for Session | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-05-14 22:57:45 +01:00
										 |  |  |  * Superclass representing a saved session as it exists in the database. | 
					
						
							| 
									
										
										
										
											2019-05-11 21:20:09 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @author GNU social | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-08-22 17:52:02 -04:00
										 |  |  | class Session extends Managed_DataObject | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     ###START_AUTOCODE
 | 
					
						
							|  |  |  |     /* the code below is auto generated do not remove the above tag */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  |     public $__table = 'session';             // table name
 | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  |     public $id;                              // varchar(32)  primary_key not_null
 | 
					
						
							|  |  |  |     public $session_data;                    // text()
 | 
					
						
							|  |  |  |     public $created;                         // datetime()   not_null
 | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  |     public $modified;                        // timestamp()  not_null default_CURRENT_TIMESTAMP
 | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* the code above is auto generated do not remove the tag below */ | 
					
						
							|  |  |  |     ###END_AUTOCODE
 | 
					
						
							| 
									
										
										
										
											2009-06-27 05:48:22 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-11 21:20:09 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Returns an array describing how the session is stored in the database. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-08-22 17:52:02 -04:00
										 |  |  |     public static function schemaDef() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  |         return [ | 
					
						
							|  |  |  |             'fields' => [ | 
					
						
							| 
									
										
										
										
											2019-05-14 22:57:45 +01:00
										 |  |  |                 'id' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'], | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  |                 'session_data' => ['type' => 'text', 'description' => 'session data'], | 
					
						
							| 
									
										
										
										
											2019-05-14 22:57:45 +01:00
										 |  |  |                 'created' => ['type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'], | 
					
						
							|  |  |  |                 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'], | 
					
						
							| 
									
										
										
										
											2019-04-27 00:28:05 +01:00
										 |  |  |             ], | 
					
						
							|  |  |  |             'primary key' => ['id'], | 
					
						
							|  |  |  |             'indexes' => [ | 
					
						
							|  |  |  |                 'session_modified_idx' => ['modified'], | 
					
						
							|  |  |  |             ], | 
					
						
							|  |  |  |         ]; | 
					
						
							| 
									
										
										
										
											2009-06-27 07:09:21 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-27 05:15:59 -07:00
										 |  |  | } |