User_im_prefs.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * Data class for user IM preferences
  18. *
  19. * @category Data
  20. * @package GNUsocial
  21. * @author Craig Andrews <candrews@integralblue.com>
  22. * @copyright 2009 StatusNet Inc.
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. defined('GNUSOCIAL') || die();
  26. class User_im_prefs extends Managed_DataObject
  27. {
  28. ###START_AUTOCODE
  29. /* the code below is auto generated do not remove the above tag */
  30. public $__table = 'user_im_prefs'; // table name
  31. public $user_id; // int(4) primary_key not_null
  32. public $screenname; // varchar(191) not_null not 255 because utf8mb4 takes more space
  33. public $transport; // varchar(191) not_null not 255 because utf8mb4 takes more space
  34. public $notify; // bool not_null default_false
  35. public $replies; // bool not_null default_false
  36. public $updatefrompresence; // bool not_null default_false
  37. public $created; // datetime()
  38. public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
  39. /* the code above is auto generated do not remove the tag below */
  40. ###END_AUTOCODE
  41. public static function schemaDef()
  42. {
  43. return array(
  44. 'fields' => array(
  45. 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user'),
  46. 'screenname' => array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'screenname on this service'),
  47. 'transport' => array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'transport (ex xmpp, aim)'),
  48. 'notify' => array('type' => 'bool', 'not null' => true, 'default' => false, 'description' => 'Notify when a new notice is sent'),
  49. 'replies' => array('type' => 'bool', 'not null' => true, 'default' => false, 'description' => 'Send replies from people not subscribed to'),
  50. 'updatefrompresence' => array('type' => 'bool', 'not null' => true, 'default' => false, 'description' => 'Update from presence.'),
  51. 'created' => array('type' => 'datetime', 'description' => 'date this record was created'),
  52. 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
  53. ),
  54. 'primary key' => array('user_id', 'transport'),
  55. 'unique keys' => array(
  56. 'user_im_prefs_transport_screenname_key' => array('transport', 'screenname'),
  57. ),
  58. 'foreign keys' => array(
  59. 'user_im_prefs_user_id_fkey' => array('user', array('user_id' => 'id')),
  60. ),
  61. );
  62. }
  63. }