123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- defined('GNUSOCIAL') || die();
- class ModLog extends Managed_DataObject
- {
- public $__table = 'mod_log';
- public $id;
- public $profile_id;
- public $moderator_id;
- public $role;
- public $is_grant;
- public $created;
-
- public static function schemaDef()
- {
- return array('description' => 'Log of moderation events',
- 'fields' => array(
- 'id' => array('type' => 'varchar',
- 'length' => 36,
- 'not null' => true,
- 'description' => 'unique event ID'),
- 'profile_id' => array('type' => 'int',
- 'not null' => true,
- 'description' => 'profile getting the role'),
- 'moderator_id' => array('type' => 'int',
- 'description' => 'profile granting or revoking the role'),
- 'role' => array('type' => 'varchar',
- 'length' => 32,
- 'not null' => true,
- 'description' => 'role granted or revoked'),
- 'is_grant' => array('type' => 'bool',
- 'default' => true,
- 'description' => 'Was this a grant or revocation of a role'),
- 'created' => array('type' => 'datetime',
- 'not null' => true,
- 'description' => 'date this record was created')
- ),
- 'primary key' => array('id'),
- 'foreign keys' => array(
- 'mod_log_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
- 'mod_log_moderator_id_fkey' => array('user', array('moderator_id' => 'id'))
- ),
- 'indexes' => array(
- 'mod_log_profile_id_created_idx' => array('profile_id', 'created'),
- ),
- );
- }
- }
|