. // }}} namespace App\Entity; use DateTimeInterface; /** * 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 ActivityTag { // {{{ Autocode private string $tag; private int $activity_id; private \DateTimeInterface $created; public function setTag(string $tag): self { $this->tag = $tag; return $this; } public function getTag(): string { return $this->tag; } public function setActivityId(int $activity_id): self { $this->activity_id = $activity_id; return $this; } public function getActivityId(): int { return $this->activity_id; } public function setCreated(DateTimeInterface $created): self { $this->created = $created; return $this; } public function getCreated(): DateTimeInterface { return $this->created; } // }}} Autocode public static function schemaDef(): array { return [ 'name' => 'activity_tag', 'description' => 'Hash tags', 'fields' => [ 'tag' => ['type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this activity'], 'activity_id' => ['type' => 'int', 'not null' => true, 'description' => 'activity tagged'], 'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'], ], 'primary key' => ['tag', 'activity_id'], 'foreign keys' => [ 'activity_tag_activity_id_fkey' => ['activity', ['activity_id' => 'id']], ], 'indexes' => [ 'activity_tag_created_idx' => ['created'], 'activity_tag_activity_id_idx' => ['activity_id'], 'activity_tag_tag_created_activity_id_idx' => ['tag', 'created', 'activity_id'], ], ]; } }