Location_namespace.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. * Table Definition for location_namespace
  18. *
  19. * @copyright 2009 StatusNet, Inc.
  20. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  21. */
  22. defined('GNUSOCIAL') || die();
  23. class Location_namespace extends Managed_DataObject
  24. {
  25. ###START_AUTOCODE
  26. /* the code below is auto generated do not remove the above tag */
  27. public $__table = 'location_namespace'; // table name
  28. public $id; // int(4) primary_key not_null
  29. public $description; // varchar(191)
  30. public $created; // datetime()
  31. public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
  32. /* the code above is auto generated do not remove the tag below */
  33. ###END_AUTOCODE
  34. public static function schemaDef()
  35. {
  36. return array(
  37. 'fields' => array(
  38. 'id' => array('type' => 'int', 'not null' => true, 'description' => 'identity for this namespace'),
  39. 'description' => array('type' => 'varchar', 'length' => 191, 'description' => 'description of the namespace'),
  40. 'created' => array('type' => 'datetime', 'description' => 'date the record was created'),
  41. 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
  42. ),
  43. 'primary key' => array('id'),
  44. );
  45. }
  46. }