. // }}} namespace App\Entity; /** * Entity for Notice Tag * * @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 NoticeTag { // {{{ Autocode // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'notice_tag', 'description' => 'Hash tags', 'fields' => [ 'tag' => ['type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'], 'notice_id' => ['type' => 'int', 'not null' => true, 'description' => 'notice tagged'], 'created' => ['type' => 'datetime', 'not null' => true, 'default' => '0000-00-00 00:00:00', 'description' => 'date this record was created'], ], 'primary key' => ['tag', 'notice_id'], 'foreign keys' => [ 'notice_tag_notice_id_fkey' => ['notice', ['notice_id' => 'id']], ], 'indexes' => [ 'notice_tag_created_idx' => ['created'], 'notice_tag_notice_id_idx' => ['notice_id'], 'notice_tag_tag_created_notice_id_idx' => ['tag', 'created', 'notice_id'], ], ]; } }