[AUTOGENERATED][DB][File][GroupJoinQueue] Update autogenerated code and add select fields as specified in the previous commit

This commit is contained in:
2021-03-10 17:20:42 +00:00
parent 1712782cc5
commit 481027b09b
7 changed files with 27 additions and 37 deletions

View File

@@ -20,7 +20,6 @@
namespace App\Entity;
use App\Core\Entity;
use DateTimeInterface;
/**
* Entity for Queue on joining a group
@@ -41,7 +40,6 @@ class GroupJoinQueue extends Entity
// {{{ Autocode
private int $gsactor_id;
private int $group_id;
private DateTimeInterface $created;
public function setGSActorId(int $gsactor_id): self
{
@@ -65,17 +63,6 @@ class GroupJoinQueue extends Entity
return $this->group_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
@@ -89,8 +76,8 @@ class GroupJoinQueue extends Entity
],
'primary key' => ['gsactor_id', 'group_id'],
'indexes' => [
'group_join_queue_gsactor_id_created_idx' => ['gsactor_id', 'created'],
'group_join_queue_group_id_created_idx' => ['group_id', 'created'],
'group_join_queue_gsactor_id_idx' => ['gsactor_id'],
'group_join_queue_group_id_idx' => ['group_id'],
],
];
}