. // }}} namespace App\Entity; /** * Entity for subscription * * @category DB * @package GNUsocial * * @author Zach Copley * @copyright 2010 StatusNet Inc. * @author Mikael Nordfeldth * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org * @author Hugo Sales * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class Subscription { // {{{ Autocode >>>>>>> e63aa4d971 ([TOOLS] Change autocode tag to allow editor folding) // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'subscription', 'fields' => [ 'subscriber' => ['type' => 'int', 'not null' => true, 'description' => 'profile listening'], 'subscribed' => ['type' => 'int', 'not null' => true, 'description' => 'profile being listened to'], 'jabber' => ['type' => 'bool', 'default' => true, 'description' => 'deliver jabber messages'], 'sms' => ['type' => 'bool', 'default' => true, 'description' => 'deliver sms messages'], 'token' => ['type' => 'varchar', 'length' => 191, 'description' => 'authorization token'], 'secret' => ['type' => 'varchar', 'length' => 191, 'description' => 'token secret'], 'uri' => ['type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier'], 'created' => ['type' => 'datetime', 'not null' => true, 'default' => '0000-00-00 00:00:00', 'description' => 'date this record was created'], 'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['subscriber', 'subscribed'], 'unique keys' => [ 'subscription_uri_key' => ['uri'], ], 'indexes' => [ 'subscription_subscriber_idx' => ['subscriber', 'created'], 'subscription_subscribed_idx' => ['subscribed', 'created'], 'subscription_token_idx' => ['token'], ], ]; } }