1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- defined('GNUSOCIAL') || die();
- class User_location_prefs extends Managed_DataObject
- {
-
-
- public $__table = 'user_location_prefs';
- public $user_id;
- public $share_location;
- public $created;
- public $modified;
-
-
- public static function schemaDef()
- {
- return array(
- 'fields' => array(
- 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who has the preference'),
- 'share_location' => array('type' => 'bool', 'default' => true, 'description' => 'Whether to share location data'),
- 'created' => array('type' => 'datetime', 'description' => 'date this record was created'),
- 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
- ),
- 'primary key' => array('user_id'),
- 'foreign keys' => array(
- 'user_location_prefs_user_id_fkey' => array('user', array('user_id' => 'id')),
- ),
- );
- }
- }
|